summaryrefslogtreecommitdiffstats
path: root/temporary-bootstrap-builder-setup-cortexa8.txt
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-04-22 15:15:41 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-04-22 15:15:41 (EDT)
commitf03a976b063610b5d51e3e3a5b006f3706b431f0 (patch)
tree3df7e5b9a6dfd57e85f2d092ce760cc118aa7aeb /temporary-bootstrap-builder-setup-cortexa8.txt
parenta18a5409a23ad847d5a4aee640901a10bb7fefde (diff)
Add "${BBL_GCCTGTOPTS}" to the final cross GCC.
Diffstat (limited to 'temporary-bootstrap-builder-setup-cortexa8.txt')
-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 ..