diff options
author | David Holsgrove <david.holsgrove@xilinx.com> | 2013-03-12 15:13:48 +1000 |
---|---|---|
committer | David Holsgrove <david.holsgrove@xilinx.com> | 2014-12-09 15:51:11 +1000 |
commit | 79b988129514d8bcf7858fc6b527fd2315c544a2 (patch) | |
tree | cfba2b54a6a12ed3a8774bc38ce2d474a6d1bf3a /config/libc/glibc.in | |
parent | 6df76e2c3e5e9fe93a4e47e4f5f64554b8fde07d (diff) | |
download | crosstool-ng-79b988129514d8bcf7858fc6b527fd2315c544a2.tar.gz crosstool-ng-79b988129514d8bcf7858fc6b527fd2315c544a2.tar.bz2 crosstool-ng-79b988129514d8bcf7858fc6b527fd2315c544a2.zip |
libc/glibc: Add CUSTOM version and CUSTOM_LOCATION config options and GetCustom
CUSTOM_LOCATION config options only presented in menuconfig if component
CUSTOM version selected.
Signed-off-by: David Holsgrove <david.holsgrove@xilinx.com>
Diffstat (limited to 'config/libc/glibc.in')
-rw-r--r-- | config/libc/glibc.in | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/config/libc/glibc.in b/config/libc/glibc.in index d349dfb1..f107438f 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -95,11 +95,33 @@ config LIBC_GLIBC_V_2_8 prompt "2.8" select LIBC_GLIBC_PORTS_EXTERNAL +config LIBC_GLIBC_CUSTOM + bool + prompt "Custom glibc" + depends on EXPERIMENTAL + select LIBC_CUSTOM + select LIBC_GLIBC_2_20_or_later + endchoice config LIBC_GLIBC_2_20_or_later bool +config LIBC_CUSTOM + bool + +if LIBC_GLIBC_CUSTOM + +config LIBC_GLIBC_CUSTOM_LOCATION + string + prompt "Full path to custom glibc source" + default "" + help + Enter the path to the directory (or tarball) of your source for glibc, + or leave blank to use default CT_CUSTOM_LOCATION_ROOT_DIR/glibc + +endif # LIBC_GLIBC_CUSTOM + config LIBC_VERSION string # Don't remove next line @@ -120,3 +142,4 @@ config LIBC_VERSION default "2.10.1" if LIBC_GLIBC_V_2_10_1 default "2.9" if LIBC_GLIBC_V_2_9 default "2.8" if LIBC_GLIBC_V_2_8 + default "custom" if LIBC_GLIBC_CUSTOM |