@@ -109,7 +109,7 @@ def help_hidden : Flag<["-", "--"], "help-hidden">,
109
109
Flags<[HelpHidden, FrontendOption]>,
110
110
HelpText<"Display available options, including hidden options">;
111
111
112
- def v : Flag<["-"], "v">,
112
+ def v : Flag<["-"], "v">, Flags<[DoesNotAffectIncrementalBuild]>,
113
113
HelpText<"Show commands to run and use verbose output">;
114
114
def version : Flag<["-", "--"], "version">,
115
115
HelpText<"Print version information and exit">;
@@ -175,10 +175,11 @@ def output_file_map : Separate<["-"], "output-file-map">,
175
175
def output_file_map_EQ : Joined<["-"], "output-file-map=">,
176
176
Alias<output_file_map>;
177
177
178
- def save_temps : Flag<["-"], "save-temps">, Flags<[NoInteractiveOption]>,
178
+ def save_temps : Flag<["-"], "save-temps">,
179
+ Flags<[NoInteractiveOption,DoesNotAffectIncrementalBuild]>,
179
180
HelpText<"Save intermediate compilation results">;
180
181
def driver_time_compilation : Flag<["-"], "driver-time-compilation">,
181
- Flags<[NoInteractiveOption]>,
182
+ Flags<[NoInteractiveOption,DoesNotAffectIncrementalBuild ]>,
182
183
HelpText<"Prints the total time it took to execute all compilation tasks">;
183
184
184
185
def emit_dependencies : Flag<["-"], "emit-dependencies">,
@@ -277,9 +278,10 @@ def no_link_objc_runtime : Flag<["-"], "no-link-objc-runtime">,
277
278
HelpText<"Don't link in additions to the Objective-C runtime">;
278
279
279
280
def static_stdlib: Flag<["-"], "static-stdlib">,
281
+ Flags<[DoesNotAffectIncrementalBuild]>,
280
282
HelpText<"Statically link the Swift standard library">;
281
283
def no_static_stdlib: Flag<["-"], "no-static-stdlib">,
282
- Flags<[HelpHidden]>,
284
+ Flags<[HelpHidden,DoesNotAffectIncrementalBuild ]>,
283
285
HelpText<"Don't statically link the Swift standard library">;
284
286
285
287
def static_executable : Flag<["-"], "static-executable">,
0 commit comments