summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--temporary-bootstrap-builder-setup-cortexa8.txt13
1 files changed, 7 insertions, 6 deletions
diff --git a/temporary-bootstrap-builder-setup-cortexa8.txt b/temporary-bootstrap-builder-setup-cortexa8.txt
index da10167..7e35043 100644
--- a/temporary-bootstrap-builder-setup-cortexa8.txt
+++ b/temporary-bootstrap-builder-setup-cortexa8.txt
@@ -292,7 +292,7 @@ Configure and build a cross-compiling EGLIBC.
$ rm -Rf *
Build EGLIBC's localedef and install locales.
- $ CPPFLAGS=-DNOT_IN_libc ../eglibc-2.15/localedef/configure
+ $ CPPFLAGS=-DNOT_IN_libc ../eglibc-2.15/localedef/configure \
> --prefix=${BBL}/usr --with-glibc=../eglibc-2.15/libc
$ make
$ make SUPPORTED-LOCALES='\
@@ -346,11 +346,12 @@ Configure and build a final cross-compiling GCC.
$ cd gcc-build
$ AR=ar LDFLAGS="-Wl,-rpath,${BBL}/cross-tools/lib" ../gcc-4.6.2/configure \
> --prefix=${BBL}/cross-tools --build=${BBL_HOST} --host=${BBL_HOST} \
- > --target=${BBL_TARGET} --disable-multilib --with-sysroot=${BBL} \
- > --disable-nls --enable-shared --enable-languages=c,c++ \
- > --enable-__cxa_atexit --with-mpfr=${BBL}/cross-tools \
- > --with-gmp=${BBL}/cross-tools --with-mpc=${BBL}/cross-tools --without-ppl \
- > --without-cloog --enable-c99 --enable-long-long --enable-threads=posix
+ > --target=${BBL_TARGET} ${BBL_GCCTGTOPTS} --disable-multilib \
+ > --with-sysroot=${BBL} --disable-nls --enable-shared \
+ > --enable-languages=c,c++ --enable-__cxa_atexit \
+ > --with-mpfr=${BBL}/cross-tools --with-gmp=${BBL}/cross-tools \
+ > --with-mpc=${BBL}/cross-tools --without-ppl --without-cloog \
+ > --enable-c99 --enable-long-long --enable-threads=posix
$ make AS_FOR_TARGET="${BBL_TARGET}-as" LD_FOR_TARGET="${BBL_TARGET}-ld"
$ make install
$ cd ..