summaryrefslogtreecommitdiff
path: root/kconfig
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-12-06 00:39:15 +0100
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-12-06 00:39:15 +0100
commitf02760f428cb67e0906153da9977466feca3234b (patch)
treecefc5961801bf669cf54215c466e4df83fbb8f3e /kconfig
parentc270ecde682d618cbe386589c07805292f95ad18 (diff)
downloadembtoolkit-f02760f428cb67e0906153da9977466feca3234b.tar.gz
embtoolkit-f02760f428cb67e0906153da9977466feca3234b.tar.bz2
embtoolkit-f02760f428cb67e0906153da9977466feca3234b.tar.xz
Toolchain: mpfr: introduce build of 2.4.2 and rework build process
Signed-off-by: Abdoulaye Walsimou Gaye <walsimou@walsimou.com>
Diffstat (limited to 'kconfig')
-rw-r--r--kconfig/mpfrhost.kconfig17
1 files changed, 9 insertions, 8 deletions
diff --git a/kconfig/mpfrhost.kconfig b/kconfig/mpfrhost.kconfig
index 8c8d347..90d8037 100644
--- a/kconfig/mpfrhost.kconfig
+++ b/kconfig/mpfrhost.kconfig
@@ -24,29 +24,30 @@
choice
prompt "Version of mpfr you wish"
- default EMBTK_MPFR_HOST_VERSION_2_4_1
+ default EMBTK_MPFR_HOST_VERSION_2_4_2
help
The MPFR library is a C library for multiple-precision
floating-point computations with correct rounding.
MPFR is mandatory to build GCC
+ config EMBTK_MPFR_HOST_VERSION_2_4_2
+ bool "mpfr-2.4.2"
config EMBTK_MPFR_HOST_VERSION_2_4_1
bool "mpfr-2.4.1"
+ select EMBTK_MPFR_HOST_VERSION_PATCH
config EMBTK_MPFR_HOST_VERSION_2_4_0
bool "mpfr-2.4.0"
+ select EMBTK_MPFR_HOST_VERSION_PATCH
endchoice
#Version string
config EMBTK_MPFR_HOST_VERSION_STRING
-string
-default "2.4.1" if EMBTK_MPFR_HOST_VERSION_2_4_1
-default "2.4.0" if EMBTK_MPFR_HOST_VERSION_2_4_0
+ string
+ default "2.4.2" if EMBTK_MPFR_HOST_VERSION_2_4_2
+ default "2.4.1" if EMBTK_MPFR_HOST_VERSION_2_4_1
+ default "2.4.0" if EMBTK_MPFR_HOST_VERSION_2_4_0
#Does we need patches?
config EMBTK_MPFR_HOST_VERSION_PATCH
- depends on EMBTK_MPFR_HOST_VERSION_2_4_1 || \
- EMBTK_MPFR_HOST_VERSION_2_4_0
bool
- default y
-