From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x435.google.com (mail-wr1-x435.google.com [IPv6:2a00:1450:4864:20::435]) by sourceware.org (Postfix) with ESMTPS id 7442A3852C48 for ; Sun, 4 Dec 2022 10:44:40 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7442A3852C48 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-wr1-x435.google.com with SMTP id m14so14540386wrh.7 for ; Sun, 04 Dec 2022 02:44:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=content-transfer-encoding:mime-version:reply-to:message-id:date :subject:to:from:from:to:cc:subject:date:message-id:reply-to; bh=wIqay0a2amm1DLDvV1FnYYJbJyAWDPqRFC4SNyfHzMo=; b=CcO1nc6vIU/iq/Q6IPH/6R2TjaV09VHJw+bq2T976saKDfpQVN88uP3kfhyVSNngSa LJ+DAdhliHQkj9KoztHVY+zoFeOj8WCospmGHqTXdkfnul4LIn95wXNPC8E63Xuq2bT3 ayA3xXj/N5e+Mee6OZHWr4BS6wbN4HIb53kXsmDzwNQiqrBkTPAr00sU3jeV58XnaLXp Hwg39jwvrTzqpFwBBC+/8soiJM9QQIvlZh4/Y/urdrKppaMIf5RG4sFoab5xorix0D72 4iHiaz8EFGSdouEbwFd6czj5LlMRa260cpaZyM7qTYJ0zm87JZWEJU7WUbexstCSnTfW A/Gw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:reply-to:message-id:date :subject:to:from:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=wIqay0a2amm1DLDvV1FnYYJbJyAWDPqRFC4SNyfHzMo=; b=WEyn7vZqYQx4Ouu2qYKU7m1m86FVbpkx7JZKM216QksrpjckB/dLr5JNcAfwFCJxva 8ztRJWC0WmNi+3KzaGgz+bdxUI/QzpInLNKN0B0p3WtjYhrExqnOIqyfEOYbqJFfEw8F NU+XH9UQyZfjzMyUQEGsz4bi18NSYkjgMarhRT/iiarofXfNsPId36NC8ZWP0NFzkGSW HPh8qSE7LXzK8EBumHFRb4w1hjYN86qN5iJXwrFCNwViqAQ+R0je6Vmcp1oeSEBJs71A H4WiGtpH4FzlTr/xb15JeRpynwazHrlSRyAJffTMsc6bXTH1RhWuEXiplydNcBjsb30Q RJkQ== X-Gm-Message-State: ANoB5pmonnr9gZ2zJny0nSr3JHDY9j26ciiw3oZES7PTViVlFICQoNZ1 Ycam2RidGM2/WUwYWCATEI9jNlwf5Ms= X-Google-Smtp-Source: AA0mqf7bXbJGhEHUhvacMFje80aSP0rxXH9KVjjvxleOIDKKN9zQFE6TeEz7a5wqST4lbAn0aJPoIw== X-Received: by 2002:a5d:500a:0:b0:241:eac7:9366 with SMTP id e10-20020a5d500a000000b00241eac79366mr33803190wrt.114.1670150679237; Sun, 04 Dec 2022 02:44:39 -0800 (PST) Received: from localhost.localdomain (host81-138-1-83.in-addr.btopenworld.com. [81.138.1.83]) by smtp.gmail.com with ESMTPSA id f16-20020a056000129000b002421ce6a275sm11381597wrx.114.2022.12.04.02.44.38 (version=TLS1_3 cipher=TLS_CHACHA20_POLY1305_SHA256 bits=256/256); Sun, 04 Dec 2022 02:44:38 -0800 (PST) From: Iain Sandoe X-Google-Original-From: Iain Sandoe To: gcc-patches@gcc.gnu.org Subject: [pushed] libsanitizer, Darwin: Restrict build to Darwin 16 or newer. Date: Sun, 4 Dec 2022 10:44:37 +0000 Message-Id: <20221204104437.32069-1-iain@sandoe.co.uk> X-Mailer: git-send-email 2.37.1 (Apple Git-137.1) Reply-To: iain@sandoe.co.uk MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-8.3 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,GIT_PATCH_0,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Tested on i686-darwin9, x86_64-darwin12, 21, and on x86_64-linux-gnu, pushed to master, thanks Iain -- >8 -- 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. --- 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" ;; -- 2.37.1 (Apple Git-137.1)