From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1698) id EDAFB3852C42; Sun, 4 Dec 2022 10:42:27 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org EDAFB3852C42 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1670150547; bh=XNVs0fGWyaBvHNnL+VkZpw5umTEjEoWEU9jLhQkNRrw=; h=From:To:Subject:Date:From; b=wgq9lHVmmKfbuYmlmRCAYRMAb3ZK5QlxyN6qgjKrA8Ef4y5Wi60fRJqbwoTlFAdBf 6r+pR/fNzB2NjvrviCQQuqs2XLhUAJiCfwTEhFv5Rcn7EX4d8g+qzwbPvV/nspVM0n QKxbZxcpwnWTYiATiQzriC6ONpIwbrjbfC5lKwYo= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Iain D Sandoe To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-4480] libsanitizer, Darwin: Restrict build to Darwin 16 or newer. X-Act-Checkin: gcc X-Git-Author: Iain Sandoe X-Git-Refname: refs/heads/master X-Git-Oldrev: 58a7b1e354530d8dfe7d8fb859c8b8b5a9140f1f X-Git-Newrev: 7fe8aca8a62341b9f4ee68d621c087c6f17ce82a Message-Id: <20221204104227.EDAFB3852C42@sourceware.org> Date: Sun, 4 Dec 2022 10:42:27 +0000 (GMT) List-Id: https://gcc.gnu.org/g:7fe8aca8a62341b9f4ee68d621c087c6f17ce82a commit r13-4480-g7fe8aca8a62341b9f4ee68d621c087c6f17ce82a Author: Iain Sandoe Date: Mon Oct 10 14:37:50 2022 +0100 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 libsanitizer/ChangeLog: * configure.tgt: Restrict build to Darwin 16 or newer. Diff: --- libsanitizer/configure.tgt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsanitizer/configure.tgt b/libsanitizer/configure.tgt index 87d8a2c3820..1175cd1a4e3 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" ;;