mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-17 02:10:01 +00:00
21649be476
- commonalise the config-knobs that: - enable checking the newly built companion libraries - enable building the companion libraries for the target -------- diffstat follows -------- /devel/gcc-4.4/scripts/build/companion_libs/ppl.sh | 2 1 1 0 /devel/gcc-4.4/scripts/build/companion_libs/mpc.sh | 2 1 1 0 /devel/gcc-4.4/scripts/build/companion_libs/gmp.sh | 4 2 2 0 +- /devel/gcc-4.4/scripts/build/companion_libs/cloog.sh | 2 1 1 0 /devel/gcc-4.4/scripts/build/companion_libs/mpfr.sh | 4 2 2 0 +- /devel/gcc-4.4/config/companion_libs/ppl.in | 14 0 14 0 ---------- /devel/gcc-4.4/config/companion_libs/mpc.in | 13 0 13 0 ---------- /devel/gcc-4.4/config/companion_libs/gmp.in | 13 0 13 0 ---------- /devel/gcc-4.4/config/companion_libs/cloog.in | 13 0 13 0 ---------- /devel/gcc-4.4/config/companion_libs/mpfr.in | 14 0 14 0 ---------- /devel/gcc-4.4/config/companion_libs.in | 46 35 11 0 ++++++++++++++++++++++++++-------- 11 files changed, 42 insertions(+), 85 deletions(-)
35 lines
553 B
Plaintext
35 lines
553 B
Plaintext
# GMP options
|
|
|
|
choice
|
|
bool
|
|
prompt "MPFR version"
|
|
|
|
config MPFR_V_2_3_1
|
|
bool
|
|
prompt "2.3.1"
|
|
|
|
config MPFR_V_2_3_2
|
|
bool
|
|
prompt "2.3.2"
|
|
|
|
config MPFR_V_2_4_0
|
|
bool
|
|
prompt "2.4.0"
|
|
|
|
config MPFR_V_2_4_1
|
|
bool
|
|
prompt "2.4.1"
|
|
|
|
# CT_INSERT_VERSION_ABOVE
|
|
# Don't remove above line!
|
|
endchoice
|
|
|
|
config MPFR_VERSION
|
|
string
|
|
default "2.3.1" if MPFR_V_2_3_1
|
|
default "2.3.2" if MPFR_V_2_3_2
|
|
default "2.4.0" if MPFR_V_2_4_0
|
|
default "2.4.1" if MPFR_V_2_4_1
|
|
# CT_INSERT_VERSION_STRING_ABOVE
|
|
# Don't remove above line!
|