summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/companion_libs/mpc.in6
-rw-r--r--config/companion_libs/mpfr.in6
-rwxr-xr-xscripts/addToolVersion.sh3
3 files changed, 14 insertions, 1 deletions
diff --git a/config/companion_libs/mpc.in b/config/companion_libs/mpc.in
index 5318238..bb88818 100644
--- a/config/companion_libs/mpc.in
+++ b/config/companion_libs/mpc.in
@@ -6,6 +6,11 @@ choice
# Don't remove next line
# CT_INSERT_VERSION_BELOW
+config MPC_V_0_8_1
+ bool
+ prompt "0.8.1 (EXPERIMENTAL)"
+ depends on EXPERIMENTAL
+
config MPC_V_0_7
bool
prompt "0.7"
@@ -21,5 +26,6 @@ config MPC_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
+ default "0.8.1" if MPC_V_0_8_1
default "0.7" if MPC_V_0_7
default "0.6" if MPC_V_0_6
diff --git a/config/companion_libs/mpfr.in b/config/companion_libs/mpfr.in
index 118e229..8111928 100644
--- a/config/companion_libs/mpfr.in
+++ b/config/companion_libs/mpfr.in
@@ -6,6 +6,11 @@ choice
# Don't remove next line
# CT_INSERT_VERSION_BELOW
+config MPFR_V_2_4_2
+ bool
+ prompt "2.4.2 (EXPERIMENTAL)"
+ depends on EXPERIMENTAL
+
config MPFR_V_2_4_1
bool
prompt "2.4.1"
@@ -30,6 +35,7 @@ config MPFR_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
+ default "2.4.2" if MPFR_V_2_4_2
default "2.4.1" if MPFR_V_2_4_1
default "2.4.0" if MPFR_V_2_4_0
default "2.3.2" if MPFR_V_2_3_2
diff --git a/scripts/addToolVersion.sh b/scripts/addToolVersion.sh
index d071cef..e26e5ab 100755
--- a/scripts/addToolVersion.sh
+++ b/scripts/addToolVersion.sh
@@ -18,7 +18,7 @@ Usage: ${myname} <tool> <[options] version [...]> ...
'tool' in one of:
--gcc, --binutils, --glibc, --eglibc, --uClibc, --linux,
--gdb, --dmalloc, --duma, --strace, --ltrace, --libelf
- --gmp, --mpfr, --ppl, --cloog
+ --gmp, --mpfr, --ppl, --cloog, --mpc
Valid options for all tools:
--stable, -s, +x (default)
@@ -146,6 +146,7 @@ while [ $# -gt 0 ]; do
--mpfr) EXP=; OBS=; cat=MPFR; tool=mpfr; tool_prefix=companion_libs;;
--ppl) EXP=; OBS=; cat=PPL; tool=ppl; tool_prefix=companion_libs;;
--cloog) EXP=; OBS=; cat=CLOOG; tool=cloog; tool_prefix=companion_libs;;
+ --mpc) EXP=; OBS=; cat=MPC; tool=mpc; tool_prefix=companion_libs;;
# Tools options:
-x|--experimental|+s) EXP=1;;