Skip to content

Commit 5315ad6

Browse files
committed
PCH only
1 parent dc3474d commit 5315ad6

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

App/InjectionNext/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundleShortVersionString</key>
2020
<string>$(MARKETING_VERSION)</string>
2121
<key>CFBundleVersion</key>
22-
<string>9950</string>
22+
<string>9952</string>
2323
<key>LSApplicationCategoryType</key>
2424
<string>public.app-category.developer-tools</string>
2525
<key>LSMinimumSystemVersion</key>

App/InjectionNext/NextCompiler.swift

+3-2
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ class NextCompiler {
173173
let platformUsr = Defaults.xcodePath + "/Contents/Developer/Platforms/" +
174174
platform.replacingOccurrences(of: "Simulator", with: "OS") +
175175
".platform/Developer/usr/"
176+
let baseOptionsToAdd = ["-o", object, "-DINJECTING"]
176177
let languageSpecific = (isSwift ?
177178
["-c", "-filelist", filesfile, "-primary-file", source,
178179
"-external-plugin-path",
@@ -183,8 +184,8 @@ class NextCompiler {
183184
platformUsr+"bin/swift-plugin-server",
184185
"-plugin-path", toolchain+"/usr/lib/swift/host/plugins",
185186
"-plugin-path", toolchain+"/usr/local/lib/swift/host/plugins"] :
186-
["-c", source]) + ["-o", object, "-DINJECTING"]
187-
187+
["-c", source, "-Xclang", "-fno-validate-pch"]) + baseOptionsToAdd
188+
188189
// Call compiler process
189190
if let errors = Popen.task(exec: compiler,
190191
arguments: stored.arguments + languageSpecific,

0 commit comments

Comments
 (0)