diff options
author | Iain Sandoe <iain@sandoe.co.uk> | 2022-10-10 14:37:50 +0100 |
---|---|---|
committer | Iain Sandoe <iain@sandoe.co.uk> | 2022-12-04 10:41:53 +0000 |
commit | 7fe8aca8a62341b9f4ee68d621c087c6f17ce82a (patch) | |
tree | 011972360dbc1882ac5e6d29183bf99dd7ef4ceb /libsanitizer | |
parent | 58a7b1e354530d8dfe7d8fb859c8b8b5a9140f1f (diff) | |
download | gcc-7fe8aca8a62341b9f4ee68d621c087c6f17ce82a.zip gcc-7fe8aca8a62341b9f4ee68d621c087c6f17ce82a.tar.gz gcc-7fe8aca8a62341b9f4ee68d621c087c6f17ce82a.tar.bz2 |
libsanitizer, Darwin: Restrict build to Darwin 16 or newer.
The latest import has added dependencies on system resources that are not
present until Darwin 16. It might be possible to work around these for
earlier systems, but in the short-term we have to disable the build so that
bootstrap completes.
Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
libsanitizer/ChangeLog:
* configure.tgt: Restrict build to Darwin 16 or newer.
Diffstat (limited to 'libsanitizer')
-rw-r--r-- | libsanitizer/configure.tgt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsanitizer/configure.tgt b/libsanitizer/configure.tgt index 87d8a2c..1175cd1 100644 --- a/libsanitizer/configure.tgt +++ b/libsanitizer/configure.tgt @@ -64,7 +64,7 @@ case "${target}" in HWASAN_SUPPORTED=yes fi ;; - x86_64-*-darwin2* | x86_64-*-darwin1[2-9]* | i?86-*-darwin1[2-9]*) + x86_64-*-darwin2* | x86_64-*-darwin1[6-9]* | i?86-*-darwin1[6-8]*) TSAN_SUPPORTED=no EXTRA_CXXFLAGS="${EXTRA_CXXFLAGS} -Wl,-undefined,dynamic_lookup" ;; |