summaryrefslogtreecommitdiff
path: root/kconfig/mpfrhost.kconfig
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-05-12 02:46:17 +0200
committerAbdoulaye Walsimou Gaye <walsimou@walsimou.com>2009-05-12 02:46:17 +0200
commit8c0ea1194bc0905926fb9e211c3356f2348c7ca7 (patch)
treeba98e07ed70e19ef2b60b5ae3206bcd2ad5f3b51 /kconfig/mpfrhost.kconfig
downloadembtoolkit-8c0ea1194bc0905926fb9e211c3356f2348c7ca7.tar.gz
embtoolkit-8c0ea1194bc0905926fb9e211c3356f2348c7ca7.tar.bz2
embtoolkit-8c0ea1194bc0905926fb9e211c3356f2348c7ca7.tar.xz
Embtoolkit: Fisrt commit
This is the first commit in the embedded system toolkit git repository, formaly embtoolkit. This porject aims to design a tool which helps on building an embedded linux system. The goal of this porject is to use EGLIBC as C Library for linux systems generated. This initial commit is manely just a backup in order to save work done. Signed-off-by: Abdoulaye Walsimou Gaye <walsimou@walsimou.com>
Diffstat (limited to 'kconfig/mpfrhost.kconfig')
-rw-r--r--kconfig/mpfrhost.kconfig45
1 files changed, 45 insertions, 0 deletions
diff --git a/kconfig/mpfrhost.kconfig b/kconfig/mpfrhost.kconfig
new file mode 100644
index 0000000..a391ba5
--- /dev/null
+++ b/kconfig/mpfrhost.kconfig
@@ -0,0 +1,45 @@
+#########################################################################################
+# GAYE Abdoulaye Walsimou, <walsimou@walsimou.com>
+# Copyright(C) 2009 GAYE Abdoulaye Walsimou. All rights reserved.
+#
+# This program is free software; you can distribute it and/or modify it
+# under the terms of the GNU General Public License
+# (Version 2 or later) published by the Free Software Foundation.
+#
+# This program is distributed in the hope it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+# for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
+#########################################################################################
+#
+# \file mpfr.kconfig
+# \brief mpfr.kconfig of Embtoolkit
+# \author GAYE Abdoulaye Walsimou, <walsimou@walsimou.com>
+# \date May 2009
+#########################################################################################
+
+choice
+ prompt "Version of mpfr you wish"
+ default EMBTK_MPFR_HOST_VERSION_2_4_1
+ 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_1
+ bool "mpfr-2.4.1"
+ config EMBTK_MPFR_HOST_VERSION_2_4_0
+ bool "mpfr-2.4.0"
+endchoice
+
+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
+
+
+