forked from OSchip/llvm-project
[mac/arm] Fix test/Driver/darwin-sdk-version.c on arm macs
Two invocations in this test used `-m64`, which on an arm mac means arm64 in the triple, not x86_64.
This commit is contained in:
parent
c473184914
commit
e91b2344ad
|
@ -30,8 +30,8 @@
|
|||
// RUN: | FileCheck --check-prefixes=NO_VERSION,ERROR %s
|
||||
|
||||
// CHECK: -target-sdk-version=10.14
|
||||
// INFER_SDK_VERSION: "-triple" "x86_64-apple-macosx10.10.0"
|
||||
// INFER_SDK_VERSION: "-triple" "{{arm64|x86_64}}-apple-macosx10.10.0"
|
||||
// INFER_SDK_VERSION-SAME: -target-sdk-version=10.10
|
||||
// INFER_DEPLOYMENT_TARGET_VERSION: "-triple" "x86_64-apple-macosx10.8.0"
|
||||
// INFER_DEPLOYMENT_TARGET_VERSION: "-triple" "{{arm64|x86_64}}-apple-macosx10.8.0"
|
||||
// NO_VERSION-NOT: target-sdk-version
|
||||
// ERROR: warning: SDK settings were ignored as 'SDKSettings.json' could not be parsed
|
||||
|
|
Loading…
Reference in New Issue