@@ -56,9 +56,6 @@ If set, does not run the build phase.
56
56
. PARAMETER SkipPackaging
57
57
If set, skips building the msi's and installer
58
58
59
- . PARAMETER DefaultsLLD
60
- If false, use `link.exe` as the default linker with the SDK (with SPM)
61
-
62
59
. PARAMETER DebugInfo
63
60
If set, debug information will be generated for the builds.
64
61
@@ -101,7 +98,6 @@ param(
101
98
[switch ] $SkipBuild = $false ,
102
99
[switch ] $SkipRedistInstall = $false ,
103
100
[switch ] $SkipPackaging = $false ,
104
- [bool ] $DefaultsLLD = $true ,
105
101
[string []] $Test = @ (),
106
102
[string ] $Stage = " " ,
107
103
[string ] $BuildTo = " " ,
@@ -1274,13 +1270,8 @@ function Build-XCTest($Arch, [switch]$Test = $false) {
1274
1270
Foundation_DIR = " $FoundationBinaryCache \cmake\modules" ;
1275
1271
} + $TestingDefines )
1276
1272
1277
- if ($DefaultsLLD ) {
1278
- Invoke-Program $python - c " import plistlib; print(str(plistlib.dumps({ 'DefaultProperties': { 'XCTEST_VERSION': 'development', 'SWIFTC_FLAGS': ['-use-ld=lld'] } }), encoding='utf-8'))" `
1279
- - OutFile " $ ( $Arch.PlatformInstallRoot ) \Info.plist"
1280
- } else {
1281
- Invoke-Program $python - c " import plistlib; print(str(plistlib.dumps({ 'DefaultProperties': { 'XCTEST_VERSION': 'development' } }), encoding='utf-8'))" `
1282
- - OutFile " $ ( $Arch.PlatformInstallRoot ) \Info.plist"
1283
- }
1273
+ Invoke-Program $python - c " import plistlib; print(str(plistlib.dumps({ 'DefaultProperties': { 'XCTEST_VERSION': 'development', 'SWIFTC_FLAGS': ['-use-ld=lld'] } }), encoding='utf-8'))" `
1274
+ - OutFile " $ ( $Arch.PlatformInstallRoot ) \Info.plist"
1284
1275
}
1285
1276
}
1286
1277
0 commit comments