summaryrefslogtreecommitdiff
path: root/scripts/build/companion_libs/gmp.sh
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-07-24 21:53:14 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2011-07-24 21:53:14 (GMT)
commitae3b564fb808cd89098dbcab444b49b742ab53b2 (patch)
tree1c3431e3a850bbe9c0895ff14fc1f62842d1579b /scripts/build/companion_libs/gmp.sh
parent518a1ff137ed5e1a2c3251d4672549985c0cc2d5 (diff)
complibs: add frontends for building to run on the build machine
In canadian-cross, we need the companion libraries running on the build machine, to be able to build the two core gcc. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'scripts/build/companion_libs/gmp.sh')
-rw-r--r--scripts/build/companion_libs/gmp.sh23
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/build/companion_libs/gmp.sh b/scripts/build/companion_libs/gmp.sh
index a4b037d..04af002 100644
--- a/scripts/build/companion_libs/gmp.sh
+++ b/scripts/build/companion_libs/gmp.sh
@@ -4,6 +4,7 @@
do_gmp_get() { :; }
do_gmp_extract() { :; }
+do_gmp_for_build() { :; }
do_gmp_for_host() { :; }
# Overide functions depending on configuration
@@ -20,6 +21,28 @@ do_gmp_extract() {
CT_Patch "gmp" "${CT_GMP_VERSION}"
}
+# Build GMP for running on build
+# - always build statically
+# - we do not have build-specific CFLAGS
+# - install in build-tools prefix
+do_gmp_for_build() {
+ local -a gmp_opts
+
+ case "${CT_TOOLCHAIN_TYPE}" in
+ native|cross) return 0;;
+ esac
+
+ CT_DoStep INFO "Installing GMP for build"
+ CT_mkdir_pushd "${CT_BUILD_DIR}/build-gmp-build-${CT_BUILD}"
+
+ gmp_opts+=( "host=${CT_BUILD}" )
+ gmp_opts+=( "prefix=${CT_BUILDTOOLS_PREFIX_DIR}" )
+ do_gmp_backend "${gmp_opts[@]}"
+
+ CT_Popd
+ CT_EndStep
+}
+
# Build GMP for running on host
do_gmp_for_host() {
local -a gmp_opts