Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Sources/SWBWindowsPlatform/Specs/WindowsCompile.xcspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
Type = Compiler;
BasedOn = "default:com.apple.compilers.llvm.clang.1_0";
EnvironmentVariables = {
"TEMP" = "$(CACHE_ROOT:default=$(OBJROOT))";
"TMP" = "$(CACHE_ROOT:default=$(OBJROOT))";
"TEMP" = "$(OBJROOT)";
"TMP" = "$(OBJROOT)";
};
Name = "Apple LLVM Windows";
Description = "Apple LLVM Windows compiler";
Expand Down
2 changes: 2 additions & 0 deletions Tests/SWBBuildSystemTests/ClangExplicitModulesTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1397,6 +1397,7 @@ fileprivate struct ClangExplicitModulesTests: CoreBasedTests {
buildConfigurations: [TestBuildConfiguration(
"Debug",
buildSettings: [
"OBJROOT": tmpDir.join("objroot").str,
"PRODUCT_NAME": "$(TARGET_NAME)",
"CLANG_ENABLE_MODULES": "YES",
"_EXPERIMENTAL_CLANG_EXPLICIT_MODULES": "YES",
Expand All @@ -1419,6 +1420,7 @@ fileprivate struct ClangExplicitModulesTests: CoreBasedTests {
buildConfigurations: [TestBuildConfiguration(
"Debug",
buildSettings: [
"OBJROOT": tmpDir.join("objroot").str,
"PRODUCT_NAME": "$(TARGET_NAME)",
"CLANG_ENABLE_MODULES": "YES",
"_EXPERIMENTAL_CLANG_EXPLICIT_MODULES": "YES",
Expand Down