|
| 1 | +diff --git a/swift/test/Misc/verify-swift-feature-testing.test-sh b/swift/test/Misc/verify-swift-feature-testing.test-sh |
| 2 | +index 3f36fc979cb..8713ae8fea8 100755 |
| 3 | +--- a/swift/test/Misc/verify-swift-feature-testing.test-sh |
| 4 | ++++ b/swift/test/Misc/verify-swift-feature-testing.test-sh |
| 5 | +@@ -98,7 +98,6 @@ def find_matches(swift_src_root): |
| 6 | + # `-enable-upcoming-feature` in the test directories. |
| 7 | + output = subprocess.check_output( |
| 8 | + [ |
| 9 | +- "git", |
| 10 | + "grep", |
| 11 | + "--extended-regexp", |
| 12 | + "--recursive", |
| 13 | +diff --git a/swift/utils/swift_build_support/swift_build_support/cmake.py b/swift/utils/swift_build_support/swift_build_support/cmake.py |
| 14 | +index 9a0f5b43e2d..5c7d1320a2d 100644 |
| 15 | +--- a/swift/utils/swift_build_support/swift_build_support/cmake.py |
| 16 | ++++ b/swift/utils/swift_build_support/swift_build_support/cmake.py |
| 17 | +@@ -150,11 +150,8 @@ class CMake(object): |
| 18 | + define("CMAKE_CXX_COMPILER_LAUNCHER:PATH", args.cmake_cxx_launcher) |
| 19 | + |
| 20 | + if self.prefer_native_toolchain and product: |
| 21 | +- clang_tools_path = product.native_clang_tools_path(args.host_target) |
| 22 | +- define("CMAKE_C_COMPILER:PATH", os.path.join(clang_tools_path, |
| 23 | +- 'bin', 'clang')) |
| 24 | +- define("CMAKE_CXX_COMPILER:PATH", os.path.join(clang_tools_path, |
| 25 | +- 'bin', 'clang++')) |
| 26 | ++ define("CMAKE_C_COMPILER:PATH", toolchain.cc) |
| 27 | ++ define("CMAKE_CXX_COMPILER:PATH", toolchain.cxx) |
| 28 | + |
| 29 | + toolchain_path = product.native_toolchain_path(args.host_target) |
| 30 | + cmake_swiftc_path = os.getenv('CMAKE_Swift_COMPILER', |
1 | 31 | diff --git a/swift-corelibs-libdispatch/src/swift/CMakeLists.txt b/swift-corelibs-libdispatch/src/swift/CMakeLists.txt
|
2 | 32 | index 38bef37..d0ddf98 100644
|
3 | 33 | --- a/swift-corelibs-libdispatch/src/swift/CMakeLists.txt
|
|
0 commit comments