diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/debug/300-gdb.sh | 27 | ||||
-rw-r--r-- | scripts/build/gmp.sh | 47 | ||||
-rw-r--r-- | scripts/build/mpfr.sh | 49 |
3 files changed, 98 insertions, 25 deletions
diff --git a/scripts/build/debug/300-gdb.sh b/scripts/build/debug/300-gdb.sh index 680375b5..5de58623 100644 --- a/scripts/build/debug/300-gdb.sh +++ b/scripts/build/debug/300-gdb.sh @@ -51,12 +51,13 @@ do_debug_gdb_build() { mkdir -p "${CT_BUILD_DIR}/build-gdb-cross" cd "${CT_BUILD_DIR}/build-gdb-cross" + cross_extra_config="${extra_config}" if [ "${CT_CC_GCC_GMP_MPFR}" = "y" ]; then - extra_config="${extra_config} --with-gmp=${CT_PREFIX_DIR} --with-mpfr=${CT_PREFIX_DIR}" + cross_extra_config="${cross_extra_config} --with-gmp=${CT_PREFIX_DIR} --with-mpfr=${CT_PREFIX_DIR}" fi case "${CT_THREADS}" in - none) extra_config="${extra_config} --disable-threads";; - *) extra_config="${extra_config} --enable-threads";; + none) cross_extra_config="${cross_extra_config} --disable-threads";; + *) cross_extra_config="${cross_extra_config} --enable-threads";; esac CC_for_gdb= @@ -66,6 +67,8 @@ do_debug_gdb_build() { LD_for_gdb="ld -static" fi + CT_DoLog DEBUG "Extra config passed: '${cross_extra_config# }'" + CC="${CC_for_gdb}" \ LD="${LD_for_gdb}" \ "${gdb_src_dir}/configure" \ @@ -74,7 +77,7 @@ do_debug_gdb_build() { --target=${CT_TARGET} \ --prefix="${CT_PREFIX_DIR}" \ --with-build-sysroot="${CT_SYSROOT_DIR}" \ - ${extra_config} 2>&1 |CT_DoLog ALL + ${cross_extra_config} 2>&1 |CT_DoLog ALL CT_DoLog EXTRA "Building cross-gdb" make ${PARALLELMFLAGS} 2>&1 |CT_DoLog ALL @@ -123,10 +126,14 @@ do_debug_gdb_build() { mkdir -p "${CT_BUILD_DIR}/build-gdb-native" cd "${CT_BUILD_DIR}/build-gdb-native" + native_extra_config="${extra_config}" case "${CT_THREADS}" in - none) extra_config="${extra_config} --disable-threads";; - *) extra_config="${extra_config} --enable-threads";; + none) native_extra_config="${native_extra_config} --disable-threads";; + *) native_extra_config="${native_extra_config} --enable-threads";; esac + if [ "${CT_GMP_MPFR_TARGET}" = "y" ]; then + native_extra_config="${native_extra_config} --with-gmp=${CT_SYSROOT_DIR}/usr --with-mpfr=${CT_SYSROOT_DIR}/usr" + fi CC_for_gdb= LD_for_gdb= @@ -137,6 +144,8 @@ do_debug_gdb_build() { export ac_cv_func_strncmp_works=yes + CT_DoLog DEBUG "Extra config passed: '${native_extra_config# }'" + CC="${CC_for_gdb}" \ LD="${LD_for_gdb}" \ "${gdb_src_dir}/configure" \ @@ -153,7 +162,7 @@ do_debug_gdb_build() { --disable-werror \ --without-included-gettext \ --without-develop \ - ${extra_config} 2>&1 |CT_DoLog ALL + ${native_extra_config} 2>&1 |CT_DoLog ALL CT_DoLog EXTRA "Building native gdb" make ${PARALLELMFLAGS} CC=${CT_TARGET}-${CT_CC} 2>&1 |CT_DoLog ALL @@ -186,6 +195,8 @@ do_debug_gdb_build() { gdbserver_LDFLAGS=-static fi + gdbserver_extra_config="${extra_config}" + LDFLAGS="${gdbserver_LDFLAGS}" \ "${gdb_src_dir}/gdb/gdbserver/configure" \ --build=${CT_BUILD} \ @@ -203,7 +214,7 @@ do_debug_gdb_build() { --without-x \ --without-included-gettext \ --without-develop \ - ${extra_config} 2>&1 |CT_DoLog ALL + ${gdbserver_extra_config} 2>&1 |CT_DoLog ALL CT_DoLog EXTRA "Building gdbserver" make ${PARALLELMFLAGS} CC=${CT_TARGET}-${CT_CC} 2>&1 |CT_DoLog ALL diff --git a/scripts/build/gmp.sh b/scripts/build/gmp.sh index ec99a2ab..e9aa98a8 100644 --- a/scripts/build/gmp.sh +++ b/scripts/build/gmp.sh @@ -2,9 +2,17 @@ # Copyright 2008 Yann E. MORIN # Licensed under the GPL v2. See COPYING in the root of this package -if [ "${CT_CC_GCC_GMP_MPFR}" = "y" ]; then +do_print_filename() { :; } +do_gmp_get() { :; } +do_gmp_extract() { :; } +do_gmp() { :; } +do_gmp_target() { :; } + +# Overide functions depending on configuration +if [ "${CT_GMP_MPFR}" = "y" ]; then do_print_filename() { + [ "${CT_GMP_MPFR}" = "y" ] || return 0 echo "gmp-${CT_GMP_VERSION}" } @@ -38,7 +46,7 @@ do_gmp() { if [ "${CT_GMP_CHECK}" = "y" ]; then CT_DoLog EXTRA "Checking GMP" - make -s check 2>&1 |CT_DoLog ALL + make ${PARALLELMFLAGS} -s check 2>&1 |CT_DoLog ALL fi CT_DoLog EXTRA "Installing GMP" @@ -47,11 +55,34 @@ do_gmp() { CT_EndStep } -else # Mo GMP +if [ "${CT_GMP_MPFR_TARGET}" = "y" ]; then -do_print_filename() { :; } -do_gmp_get() { :; } -do_gmp_extract() { :; } -do_gmp() { :; } +do_gmp_target() { + mkdir -p "${CT_BUILD_DIR}/build-gmp-target" + cd "${CT_BUILD_DIR}/build-gmp-target" + + CT_DoStep INFO "Installing GMP for the target" + + CT_DoLog EXTRA "Configuring GMP" + CFLAGS="${CT_CFLAGS_FOR_TARGET}" \ + "${CT_SRC_DIR}/${CT_GMP_FILE}/configure" \ + --build=${CT_BUILD} \ + --host=${CT_TARGET} \ + --prefix=/usr \ + --disable-shared --enable-static \ + --enable-fft --enable-mpbsd 2>&1 |CT_DoLog ALL + + CT_DoLog EXTRA "Building GMP" + make ${PARALLELMFLAGS} 2>&1 |CT_DoLog ALL + + # Not possible to check MPFR while X-compiling + + CT_DoLog EXTRA "Installing GMP" + make DESTDIR="${CT_SYSROOT_DIR}" install 2>&1 |CT_DoLog ALL + + CT_EndStep +} + +fi # CT_GMP_MPFR_TARGET == y -fi +fi # CT_GMP_MPFR == y diff --git a/scripts/build/mpfr.sh b/scripts/build/mpfr.sh index 2df6a38a..d03b1d67 100644 --- a/scripts/build/mpfr.sh +++ b/scripts/build/mpfr.sh @@ -2,10 +2,17 @@ # Copyright 2008 Yann E. MORIN # Licensed under the GPL v2. See COPYING in the root of this package -if [ "${CT_CC_GCC_GMP_MPFR}" = "y" ]; then +do_print_filename() { :; } +do_mpfr_get() { :; } +do_mpfr_extract() { :; } +do_mpfr() { :; } +do_mpfr_target() { :; } + +# Overide function depending on configuration +if [ "${CT_GMP_MPFR}" = "y" ]; then do_print_filename() { - [ "${CT_CC_GCC_GMP_MPFR}" = "y" ] || return 0 + [ "${CT_GMP_MPFR}" = "y" ] || return 0 echo "mpfr-${CT_MPFR_VERSION}" } @@ -57,7 +64,7 @@ do_mpfr() { if [ "${CT_MPFR_CHECK}" = "y" ]; then CT_DoLog EXTRA "Checking MPFR" - make -s check 2>&1 |CT_DoLog ALL + make ${PARALLELMFLAGS} -s check 2>&1 |CT_DoLog ALL fi CT_DoLog EXTRA "Installing MPFR" @@ -66,11 +73,35 @@ do_mpfr() { CT_EndStep } -else # No MPFR +if [ "${CT_GMP_MPFR_TARGET}" = "y" ]; then -do_print_filename() { :; } -do_mpfr_get() { :; } -do_mpfr_extract() { :; } -do_mpfr() { :; } +do_mpfr_target() { + mkdir -p "${CT_BUILD_DIR}/build-mpfr-target" + cd "${CT_BUILD_DIR}/build-mpfr-target" + + CT_DoStep INFO "Installing MPFR for the target" + + CT_DoLog EXTRA "Configuring MPFR" + CFLAGS="${CT_CFLAGS_FOR_TARGET}" \ + "${CT_SRC_DIR}/${CT_MPFR_FILE}/configure" \ + --build=${CT_BUILD} \ + --host=${CT_TARGET} \ + --prefix=/usr \ + --enable-thread-safe \ + --disable-shared --enable-static \ + --with-gmp="${CT_SYSROOT_DIR}/usr" 2>&1 |CT_DoLog ALL + + CT_DoLog EXTRA "Building MPFR" + make ${PARALLELMFLAGS} 2>&1 |CT_DoLog ALL + + # Not possible to check MPFR while X-compiling + + CT_DoLog EXTRA "Installing MPFR" + make DESTDIR="${CT_SYSROOT_DIR}" install 2>&1 |CT_DoLog ALL + + CT_EndStep +} + +fi # CT_GMP_MPFR_TARGET == y -fi +fi # CT_GMP_MPFR == y |