12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // Tests-Debug.xcconfig
- //
- // Generated by BuildSettingExtractor on 02/04/2018
- // https://github.com/dempseyatgithub/BuildSettingExtractor
- //
- #include "Tests-Shared.xcconfig"
- // Link-Time Optimization
- //
- // Enabling this setting allows optimization across file boundaries during linking.
- //
- // * *No:* Disabled. Do not use link-time optimization.
- // * *Monolithic Link-Time Optimization:* This mode performs monolithic link-time
- // optimization of binaries, combining all executable code into a single unit and running
- // aggressive compiler optimizations.
- // * *Incremental Link-Time Optimization:* This mode performs partitioned link-time
- // optimization of binaries, inlining between compilation units and running aggressive
- // compiler optimizations on each unit in parallel. This enables fast incremental builds
- // and uses less memory than Monolithic LTO.
- LLVM_LTO = NO
- METAL_ENABLE_DEBUG_INFO = YES
- // Swift Optimization Level
- //
- // * *None:* Compile without any optimization. [-Onone]
- // * *Optimize for Speed:* [-O]
- // * *Optimize for Size:* [-Osize]
- // * *Whole Module Optimization:* [-O -whole-module-optimization]
- SWIFT_OPTIMIZATION_LEVEL = -Onone
|