summaryrefslogtreecommitdiff
path: root/kconfig
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2013-12-24 19:56:24 +0100
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2013-12-24 19:56:24 +0100
commit18b42aaeaa708f4430bbc4c3cccfa071034ae959 (patch)
treebe594df6d490fb24e0101f69eed71a045ceb649c /kconfig
parentad11504e4912aa7b5847c665a414cc0d7b992a66 (diff)
downloadembtoolkit-18b42aaeaa708f4430bbc4c3cccfa071034ae959.tar.gz
embtoolkit-18b42aaeaa708f4430bbc4c3cccfa071034ae959.tar.bz2
embtoolkit-18b42aaeaa708f4430bbc4c3cccfa071034ae959.tar.xz
Toolchain: NEW: give ability to use GNU GLIBC as C library
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'kconfig')
-rw-r--r--kconfig/toolchain.kconfig12
1 files changed, 12 insertions, 0 deletions
diff --git a/kconfig/toolchain.kconfig b/kconfig/toolchain.kconfig
index 111d7c1..14b5e68 100644
--- a/kconfig/toolchain.kconfig
+++ b/kconfig/toolchain.kconfig
@@ -102,6 +102,7 @@ choice
prompt "Choose which C library to use"
help
Choose here which C library your toolchain will use.
+
config EMBTK_CLIB_EGLIBC
bool "eglibc"
help
@@ -109,6 +110,13 @@ choice
glibc, but care is also taken to satisfy embedded systems
constraints.
see http://www.eglibc.org for more information about eglibc.
+
+ config EMBTK_CLIB_GLIBC
+ bool "GLIBC"
+ help
+ GNU GLIBC is the well known general purpose c library found on
+ most general purpose GNU Linux distribution.
+
config EMBTK_CLIB_UCLIBC
bool "uClibc"
help
@@ -125,6 +133,10 @@ if EMBTK_CLIB_EGLIBC
source "kconfig/eglibc.kconfig"
endif
+if EMBTK_CLIB_GLIBC
+source "kconfig/glibc.kconfig"
+endif
+
if EMBTK_CLIB_UCLIBC
source "kconfig/uclibc-kconfigs/embtk-uclibc.kconfig"
endif