Do the same building test with some updated sources.
Files needed:
binutils-2.14.tar.gz
gcc-3.2.1.tar.gz
glibc-2.2.3.tar.gz
glibc-linuxthreaders-2.2.3.tar.gz
1. Binutils
// Same with Compilation - I.
2. Bootstrap compiler GCC
#cd ${PROJECT-PATH}/build-tools/
#tar zxvf gcc-3.2.1.tar.gz
#cd ${PROJECT-PATH}/build-tools/build-boot-gcc
// Do not do the compilation under the original untar directory.
#../gcc-3.2.1/configure --target=arm-linux --prefix=${PROJECT-PATH}/tools --with-headers=/usr/include --with-newlib --enable-languages=c --disable-shared
// The gcc 3.2.1 won't be created successfully without the flag "--disable-shared" for configuring.
// Headers for "--with-headers" actually should be generated by glibc building first.
3. Glibc
#cd ${PROJECT-PATH}/build-tools/
#tar zxvf glibc-2.2.3.tar.gz
#tar -zxvf glibc-linuxthreaders-2.2.3.tar.gz \ > --directory=glibc-2.2.3
#cd ${PROJECT-PATH}/build-tools/build-glibc/
// Do not do the compilation under the original untar directory.
#CC=arm-linux-gcc ../glibc-2.2.3/configure --host=arm-linux --prefix=”/usr” --enable-add-ons --with-headers=${PROJECT-PATH}/tools/arm-linux/include –-disable-profile –-without-fp
#make
// If errors on "weak precede definition" are found, we can modify the execution order of:
// ${PROJECT-PATH}/build-tools/glibc-2.2.3/sysdeps/unix/sysv/linux/arm/errlst.c (42L)
// 1. weak_alias (__old_sys_nerr, _old_sys_nerr)
// 2. strong_alias (__old_sys_nerr, _old_sys_nerr);
// 3. /*weak_alias (__old_sys_nerr, _old_sys_nerr)*/
#make install_root=${PROJECT-PATH}/tools/arm-linux \ > prefix=”” install
// If the following errors are found:
// ./stdio.texi:3269: First argument to cross-reference may not be empty.
// ./stdio.texi:3270: First argument to cross-reference may not be empty.
// Directly modify build-tools/glibc-2.2.3/manual/stdio.texi, and remove @ref{} to pass the compilation.
// Then several libraries will be generated under tools/arm-linux/lib.
// Modify ${PROJECT-PATH}/tools/arm-linux/lib/libc.so to remove absolute path, GROUP( libc.so.6 libc_nonshared.a )
4. GCC Compiler
#cd ${PROJECT-PATH}/build-tools/build-gcc/
// Do not do the compilation under the original untar directory.
#../gcc-3.2.1/configure --target=arm-linux --prefix=${PROJECT-PATH}/tools --enable-languages=c,c++ --with-headers=${PROJECT-PATH}/tools/arm-linux/include --with-libs=${PROJECT-PATH}/tools/lib --with-float=soft --enable-threads
#make all
#make install
I cannot build KS8695P-2.4.16-rmk2 kernel successfully with my arm-linux-gcc v3.2.1 tool, and will suffer hardware fp and software fp compiling errors. Didn't solve the issue yet, maybe the kernel source is too old, should have a try on 2.4.18 later version.
2005年5月5日
Build ARM ToolChain - II
2005年4月29日
Build ARM ToolChain - I (Cont.)
4. GCC compiler
# cd ${PROJECT-PATH}/build-tools/build-gcc/
// Do not do the compilation under the original untar directory
// ../gcc-2.95.3/configure --target=arm-linux \
// --prefix=${PROJECT-PATH}/tools \
// --enable-languages=c,c++
// make all
// If there is no --with-headers and --with-libs flags, the compilation will be failed.
#../gcc-2.95.3/configure --target=arm-linux --prefix=${PROJECT-PATH}/tools --enable-languages=c,c++ --with-headers=${PROJECT-PATH}/tools/arm-linux/include --with-libs=${PROJECT-PATH}/tools/lib --with-float=soft --enable-threads
#make all
#make install
// Then, arm-linux-g++, arm-linux-c++, etc. will be created under tools/bin/ and overwrite previous bootstrap compiler binaries.
5. uClibc
// We need uClibc for our target, an embedded device.
#cd ${PROJECT-PATH}/build-tools/
#tar jxvf uClibc-0.9.16.tar.bz2
#cd ${PROJECT-PATH}/build-tools/uClibc-0.9.16
#make CROSS=arm-linux- menuconfig
// Configure the menu:
// Linux kernel header location = “${PROJECT-PATH}/kernel/linux-2.4.16-rmk2”
// Shared library loader path = /lib
// uClibc development environment directory = “${PROJECT-PATH}/tools/uClibc”
// Have to check FPU option, otherwise the compilation will complain symbolic errors.
#make CROSS=arm-linux-
#make CROSS=arm-linux- PREFIX=”” install
// Finally, uClibc components will be installed to ${PROJECT-PATH}/tools/uclibc.
// And arm-uclibc-gcc will be created as well.
Those new arm-uclibc-XXX, not arm-linux-XXX, binaries are what we needed for our embedded target. Those wrappers will help our applications to be built and linked with uClibc.
Build ARM ToolChain - I
Following building instructions described in "Building Embedded Linux Systems" book, I had built a ARM toolchain for my private KS8695P platform for testing purpose.
Files needed:
binutils-2.10.1.tar.gz
gcc-2.95.3.tar.gz
glibc-2.2.3.tar.gz
glibc-linuxthreaders-2.2.3.tar.gz
uClibc-0.9.16
Make a new directory “${PROJECT-PATH}/build-tools” to store new toolchains, and new directories build-binutils, build-boot-gcc, build-glibc, and build-uClibc under build-tools/ directory to store new compiled tools, and for those new binary tools and libraries will be installed to tools/ and tools/arm-linux/ directory. The following steps are showing how to compile each tool for my target(KS8695P Board). (In my experimental machine, ${PROJECT-PATH}= /home/porter/projects/ks8695p/myself-2.4.16-2.95.3/)
1. Binutils
// Include all needed header files provided by KS8695P vendor.
#mkdir ${PROJECT-PATH}/tools/arm-linux/include
#cp –r {kernel}/include/linux/ arm-linux/include
#cp –r {kernel}/include/asm-arm/ arm-linux/include/asm
#cp –r {kernel}/include/asm-generic arm-linux/include
#cd ${PROJECT-PATH}/buld-tools/
#tar zxvf binutils-2.10.1.tar.gz
#cd ${PROJECT-PATH}/build-tools/build-binutils
// Do not do the compilation under the original untar directory.
#../binutils-2.10.1/configure --target=arm-linux --prefix=${PROJECT-PATH}/tools
// Using absolute path for --prefix argument.
#make
#make install
// All binary utilities will be installed to tools/ directory, and we will have arm-linux-addrline、arm-linux-ar、arm-linux-as, etc. under tools/bin/ directory.
2. Bootstrap compiler GCC
#cd ${PROJECT-PATH}/build-tools/
#tar zxvf gcc-2.95.3.tar.gz
#cd ${PROJECT-PATH}/build-tools/build-boot-gcc
// Do not do the compilation under the original untar directory.
#../gcc-2.95.3/configure --target=arm-linux --prefix=${PROJECT-PATH}/tools --without-headers --with-newlib --enable-languages=c
// To prevent compiling error, "can't find pthread.h", we can change the flag from "--without-headers" to "--with-headers=/usr/include".
#make all-gcc
#make install-gcc
// Under tools/bin, one new arm-linux-gcc tool will be generated.
3. Glibc
#cd ${PROJECT-PATH}/build-tools/
#tar zxvf glibc-2.2.3.tar.gz
#tar zxvf glibc-linuxthreaders-2.2.3.tar.gz –-directory=glibc-2.2.3
#cd ${PROJECT-PATH}/build-tools/build-glibc
// Do not do the compilation under the original untar directory.
#CC=arm-linux-gcc ../glibc-2.2.3/configure --host=arm-linux --prefix=”/usr” --enable-add-ons --with-headers=${PROJECT-PATH}/tools/arm-linux/include
// Add --disable-profile argument to not use statistics library.
// Add --enable-add-ons=linuxthreads due to we only use linuxthreads addon.
// Add --without-fp for targets without FPU support.
// Here, the flag, --prefix="/usr", actually is used to pass configuring, we won't install the lib to /usr.
#make
#make install_root=${PROJECT-PATH}/tools/arm-linux prefix=”” install
// Install libraries and headers to "install_root" directory, not the previsous defined "--prefix".
// If the following errors found:
// ./stdio.texi:3270: Cross reference to nonexistent node `bison.info'.
// ./stdio.texi:3269: Cross reference to nonexistent node `flex.info'.
// makeinfo: Removing output file `${PROJECT-PATH}/build-tools/glibc-2.2.3/manual/
// libc.info' due to errors; use --force to preserve.
// Directly modify build-tools/glibc-2.2.3/manual/stdio.texi, and remove @ref{*} to pass the compilation.
// Then several libraries will be created under tools/arm-linux/lib.
// Besides, modify ${PROJECT-PATH}/tools/arm-linux/lib/libc.so, remove the absolute path "/lib/" for our taret platform, GROUP( libc.so.6 libc_nonshared.a ).
2005年4月28日
Useful configurations in Apache
1. Being able to display Chinese characters
# vi /etc/httpd/conf/httpd.conf
// Modify [AddDefaultCharset ISO-8895-1] to [AddDefaultCharset null], let browser to decide which character encoding to use.
// or to [AddDefaultCharset big5], only for Chinese Big-5.
2. Prohibit to list/browse directory
# vi /etc/httpd/conf/httpd.conf
// Find
2004年10月8日
Reminders in MySQL
1. Fix Chinese issue in MySQL
# vi /etc/my.cnf
// [myqld]
// default-character-set = big5
// [client]
// default-character-set = big5
2. Note port number while using mysql_real_connect()
// mysql_real_connect(&mysql, DB_IP, DB_USER, DB_PW, DB_NAME, DB_PORT, NULL, 0)
// DB_PORT=3306
3. To get the last day of every month
// (To_DAYS(DATE_FORMAT(DATE_ADD(CURDATE(), INTERVAL 1 MONTH),\'%%Y-%%m-01\'))-TO_DAYS(DATE_FORMAT(CURDATE(),\'%%Y-%%m-01\')))
4. When configuring permission, the HOST field could be left as blank to prevent database connection failure.