1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Don't pass -O3 to the linker in debug builds.

This takes linking clang in a debug build with gold form 19.518925697 to
16.406388685 seconds.

llvm-svn: 234160
This commit is contained in:
Rafael Espindola 2015-04-06 14:51:01 +00:00
parent e72663a555
commit 17068f343b

View File

@ -159,8 +159,10 @@ endif()
function(add_link_opts target_name)
# Pass -O3 to the linker. This enabled different optimizations on different
# linkers.
if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32))
# linkers. Don't do it in debug builds since it slows down the linker
# in a context where the optimizations are not important.
if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32) AND
NOT uppercase_CMAKE_BUILD_TYPE STREQUAL "DEBUG")
set_property(TARGET ${target_name} APPEND_STRING PROPERTY
LINK_FLAGS " -Wl,-O3")
endif()