diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-10-23 01:21:20 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-10-23 01:21:20 +0200 |
commit | 9b87613c37f50b0d1a368075a9c155b2acce5ff9 (patch) | |
tree | cfa3089a1e63537f78a54a2811f372f503aecf17 | |
parent | 1a0ab9ad5588b6dfb7ba6d9586165e61f4f15762 (diff) | |
download | crosstool-ng-9b87613c37f50b0d1a368075a9c155b2acce5ff9.tar.gz crosstool-ng-9b87613c37f50b0d1a368075a9c155b2acce5ff9.tar.bz2 crosstool-ng-9b87613c37f50b0d1a368075a9c155b2acce5ff9.zip |
libc/newlib: add option to compile support for IOs on C99 formats
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
-rw-r--r-- | config/libc/newlib.in.2 | 7 | ||||
-rw-r--r-- | scripts/build/libc/newlib.sh | 5 |
2 files changed, 12 insertions, 0 deletions
diff --git a/config/libc/newlib.in.2 b/config/libc/newlib.in.2 index 66b02759..ee483bdf 100644 --- a/config/libc/newlib.in.2 +++ b/config/libc/newlib.in.2 @@ -1,5 +1,12 @@ # newlib second-part options +config LIBC_NEWLIB_IO_C99FMT + bool + prompt "Enable IOs on C99 formats" + default n + help + Enable support for IOs on C99 formats. + config LIBC_NEWLIB_IO_LL bool prompt "Enable IOs on long long" diff --git a/scripts/build/libc/newlib.sh b/scripts/build/libc/newlib.sh index 65a666ec..0593a663 100644 --- a/scripts/build/libc/newlib.sh +++ b/scripts/build/libc/newlib.sh @@ -68,6 +68,11 @@ do_libc_start_files() { CT_DoLog EXTRA "Configuring C library" + if [ "${CT_LIBC_NEWLIB_IO_C99FMT}" = "y" ]; then + newlib_opts+=( "--enable-newlib-io-c99-formats" ) + else + newlib_opts+=( "--disable-newlib-io-c99-formats" ) + fi if [ "${CT_LIBC_NEWLIB_IO_LL}" = "y" ]; then newlib_opts+=( "--enable-newlib-io-long-long" ) else |