Compare commits

..

No commits in common. "e627edc1a30193dfd4437da2b184cdcd050b8162" and "79409c2731cdc34605f857ebe1db4a6373e8cd9b" have entirely different histories.

1 changed files with 2 additions and 2 deletions

View File

@ -890,7 +890,7 @@ function(setup_compile_params)
endif()
if(__lto_enabled)
target_compile_options(${__target} PRIVATE
$<$<CONFIG:Release>:-fwhole-program-vtables> # -fsplit-lto-unit -funified-lto
$<$<CONFIG:Release>:-funified-lto -fwhole-program-vtables> # -fsplit-lto-unit
)
if(MSVC)
target_link_options(${__target} PRIVATE
@ -2514,7 +2514,7 @@ function(generate_project_version)
endif()
if(arg_COMPILER_HOMEPAGE)
set(__homepage "")
query_compiler_information(HOMEPAGE __homepage)
query_compiler_information(NAME __homepage)
string(APPEND __versions "${__common_str} ${__prefix}_COMPILER_HOMEPAGE_STR[] = \"${__homepage}\";\n")
endif()
if(arg_BUILD_DATETIME)