################################################################################ # Embtoolkit # Copyright(C) 2009-2016 Abdoulaye Walsimou GAYE. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that 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, see . # ################################################################################ # # \file eglibc.kconfig # \brief eglibc.kconfig of Embtoolkit # \author Abdoulaye Walsimou GAYE # \date May 2009 ################################################################################ config EMBTK_EGLIBC_CATEGORY string default "toolchain" choice prompt "EGLIBC branch to checkout" help EGLIBC branch to use. config EMBTK_EGLIBC_VERSION_2_19 bool "eglibc-2.19" select EMBTK_EGLIBC_NEED_PATCH config EMBTK_EGLIBC_VERSION_2_17 bool "eglibc-2.17" select EMBTK_EGLIBC_NEED_PATCH endchoice config EMBTK_EGLIBC_VERSION_STRING string default "2.19" if EMBTK_EGLIBC_VERSION_2_19 default "2.17" if EMBTK_EGLIBC_VERSION_2_17 config EMBTK_EGLIBC_SHA1 string default "0667012d4e4c87b1bb8fdc7ea6d750aeebc69ecb" if EMBTK_EGLIBC_VERSION_2_19 default "9c308032bbbe52a26f8c4d8363dcca7d6e4905c3" if EMBTK_EGLIBC_VERSION_2_17 config EMBTK_EGLIBC_NEED_PATCH bool comment "------------------------------------" comment "----- EGLIBC options configuration" comment "------------------------------------" config EMBTK_EGLIBC_DISABLE_VERSIONING bool help EGLIBC supports building the library without compatibility code and symbol versioning. This feature allows reduction of EGLIBC's footprint by omitting functionality that implements older APIs. To build EGLIBC without compatibility code and symbol versioning, answer yes here. if EMBTK_EGLIBC_VERSION_2_19 source "core/kconfig/eglibc-kconfigs/eglibc-2.19.kconfig" endif if EMBTK_EGLIBC_VERSION_2_17 source "core/kconfig/eglibc-kconfigs/eglibc-2.17.kconfig" endif if EMBTK_EGLIBC_VERSION_TRUNK source "core/kconfig/eglibc-kconfigs/eglibc-trunk.kconfig" endif