summaryrefslogtreecommitdiff
path: root/kconfig
diff options
context:
space:
mode:
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