Darwin, testsuite: Fix darwin-version-1.c fails with XCode 11.4.
authorIain Sandoe <iain@sandoe.co.uk>
Mon, 13 Apr 2020 18:27:21 +0000 (19:27 +0100)
committerIain Sandoe <iain@sandoe.co.uk>
Mon, 13 Apr 2020 18:29:41 +0000 (19:29 +0100)
From XCode 11.4 on 10.14/15 use of 10.6 and 10.7 is deprecated.
The tools issue diagnostics if -mmacosx-version-min= < 10.8

Adjust the testcase to avoid that usage on 10.14, 10.15 for now.

gcc/testsuite/ChangeLog:

2020-04-13  Iain Sandoe  <iain@sandoe.co.uk>

* gcc.dg/darwin-version-1.c: Use -mmacosx-version-min= 10.8
for system versions 10.14 and 10.15.

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/darwin-version-1.c

index d58c76b0db060b377371a1cf10eae41c95639fdf..805aa398252cce7c6d6d57d84757ba99f155d448 100644 (file)
@@ -1,3 +1,8 @@
+2020-04-13  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * gcc.dg/darwin-version-1.c: Use -mmacosx-version-min= 10.8
+       for system versions 10.14 and 10.15.
+
 2020-04-13  Thomas Koenig  <tkoenig@gcc.gnu.org>
 
        PR fortran/87644
index ad7f7da3b63c9d27ab7a5dbeec037120e3f9cefc..2ca34c6c0076def9c0ac819e687b40cb7e4121d3 100644 (file)
@@ -5,7 +5,9 @@
 /* Later Darwin linkers decline to link for less than Darwin8/MacOS 10.4.
    However, we need to make the link for 10.6 because the relevant libgcc_s
    shim files for 10.4 and 10.5 are also not installed in later SDKs.  */
-/* { dg-options "-mmacosx-version-min=10.6" { target *-*-darwin[123]* } } */
+/* { dg-options "-mmacosx-version-min=10.6" { target *-*-darwin1[01234567]* } } */
+/* From XCode 11.4 on 10.14/15 10.6 and 10.7 are also deprecated.  */
+/* { dg-options "-mmacosx-version-min=10.8" { target *-*-darwin1[89]* } } */
 /* { dg-do link { target *-*-darwin* } } */
 
 int main()