diff options
author | Alexey Neyman <stilor@att.net> | 2017-03-06 23:12:16 -0800 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-03-06 23:12:16 -0800 |
commit | 3e94b4f6803159c241b8429315311f7c003f2b74 (patch) | |
tree | 895582e482ed60133c1d60f1887e120e42ecb8cc /scripts/build/libc | |
parent | 272c010874b47ea50b653137e0d6e83a6543c318 (diff) | |
download | crosstool-ng-3e94b4f6803159c241b8429315311f7c003f2b74.tar.gz crosstool-ng-3e94b4f6803159c241b8429315311f7c003f2b74.tar.bz2 crosstool-ng-3e94b4f6803159c241b8429315311f7c003f2b74.zip |
Skip building locales on macos, too
--enable-hacker-mode is not sufficient, in 2.25 configure then
fails while checking for sysdeps fragments that apply to a given
configuration, and with that worked around, fails on binutils &
compiler version check.
In brief: if someone wants locales on cygwin/macos, you'd have to
implement cross-localedef (similar to cross-rpcgen) in glibc and
submit it upstream.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/build/libc')
-rw-r--r-- | scripts/build/libc/glibc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/libc/glibc.sh b/scripts/build/libc/glibc.sh index c12a5530..5a6a8fce 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -529,7 +529,7 @@ do_libc_locales() { # To build locales, we'd need to build glibc for the build machine. # Bail out if the host is not supported. case "${CT_BUILD}" in - *-cygwin) + *-cygwin|*-darwin*) CT_DoLog EXTRA "Skipping GNU libc locales: incompatible build machine" return ;; |