Skip to content

Commit

Permalink
Disable link-time optimization, since it can sometimes cause linker f…
Browse files Browse the repository at this point in the history
…ailures/crashes
  • Loading branch information
jspahrsummers committed Dec 3, 2011
1 parent 74009fb commit 7fb392e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Base/Configurations/Profile.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ GCC_PREPROCESSOR_DEFINITIONS = NDEBUG=1

// Whether to enable link-time optimizations (such as inlining across translation
// units)
LLVM_LTO = YES
LLVM_LTO = NO

// Whether to only build the active architecture
ONLY_ACTIVE_ARCH = YES
Expand Down
2 changes: 1 addition & 1 deletion Base/Configurations/Release.xcconfig
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES

// Whether to enable link-time optimizations (such as inlining across translation
// units)
LLVM_LTO = YES
LLVM_LTO = NO

// Whether to only build the active architecture
ONLY_ACTIVE_ARCH = NO
Expand Down

0 comments on commit 7fb392e

Please sign in to comment.