diff options
author | Alexey Neyman <stilor@att.net> | 2017-03-29 13:26:13 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-03-30 19:11:33 -0700 |
commit | 7111f95dc3513e52ea0c69776432102fb6967498 (patch) | |
tree | 0397958e7a4080408e68602345cb4c9d90058d5e /scripts/build/libc/glibc.sh | |
parent | a7edff1820d89b45449c7764644fbfa3562e3297 (diff) | |
download | crosstool-ng-7111f95dc3513e52ea0c69776432102fb6967498.tar.gz crosstool-ng-7111f95dc3513e52ea0c69776432102fb6967498.tar.bz2 crosstool-ng-7111f95dc3513e52ea0c69776432102fb6967498.zip |
MinGW-W64 fixes
- libpthread requires iteration over multilibs, unlike the core, it
does not detect and build multilibs by itself.
- Disable parallel builds for mingw-w64 components; until mingw-w64 core
builds clean, I am not trusting it.
- Make the list of tools to build configurable
- Turn on multilib in x86_64 sample.
- Make warnings about tuple less redundant. As in, "one WARN is enough,
no need to shout it three times".
- Messages about various steps/substeps are more aligned with the rest
of the components.
- Use 'make' instead of ${make} to invoke the companion make just built,
if applicable.
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/build/libc/glibc.sh')
-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 a6306336..3eac3ba7 100644 --- a/scripts/build/libc/glibc.sh +++ b/scripts/build/libc/glibc.sh @@ -158,7 +158,7 @@ do_libc_backend() { # libc_mode : 'startfiles' or 'final' : string : (empty) # multi_* : as defined in CT_IterateMultilibs : (varies) : do_libc_backend_once() { - local multi_flags multi_dir multi_os_dir multi_root multi_index multi_count + local multi_flags multi_dir multi_os_dir multi_root multi_index multi_count multi_target local build_cflags build_cppflags build_ldflags local startfiles_dir local src_dir="${CT_SRC_DIR}/${CT_LIBC}-${CT_LIBC_VERSION}" |