]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libsanitizer, Darwin: Restrict build to Darwin 16 or newer.
authorIain Sandoe <iain@sandoe.co.uk>
Mon, 10 Oct 2022 13:37:50 +0000 (14:37 +0100)
committerIain Sandoe <iain@sandoe.co.uk>
Sun, 4 Dec 2022 10:41:53 +0000 (10:41 +0000)
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.

libsanitizer/configure.tgt

index 87d8a2c382061514989d77dd5394233b5999859e..1175cd1a4e3338bd80cda2450db9a2e26c97126d 100644 (file)
@@ -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"
        ;;