From: Michelle McDaniel Date: Tue, 27 Mar 2018 20:23:45 +0000 (-0700) Subject: Turn off PGO unprofiled warning on Linux (#17262) X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bfa1881ab5b65175f97119b74ef127e08de882e1;p=platform%2Fupstream%2Fcoreclr.git Turn off PGO unprofiled warning on Linux (#17262) This warning will break the build when new files are added to the build that do not have PGO data, meaning that release builds will be broken until a new PGO collection can be run. We should not break the build if there are not counts for new files. --- diff --git a/pgosupport.cmake b/pgosupport.cmake index 96ff80af8d..bc331be6a5 100644 --- a/pgosupport.cmake +++ b/pgosupport.cmake @@ -36,7 +36,7 @@ function(add_pgo TargetName) if(UPPERCASE_CMAKE_BUILD_TYPE STREQUAL RELEASE OR UPPERCASE_CMAKE_BUILD_TYPE STREQUAL RELWITHDEBINFO) if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.6) if(HAVE_LTO) - target_compile_options(${TargetName} PRIVATE -flto -fprofile-instr-use=${ProfilePath} -Wno-profile-instr-out-of-date) + target_compile_options(${TargetName} PRIVATE -flto -fprofile-instr-use=${ProfilePath} -Wno-profile-instr-out-of-date -Wno-profile-instr-unprofiled) set_property(TARGET ${TargetName} APPEND_STRING PROPERTY LINK_FLAGS " -flto -fuse-ld=gold -fprofile-instr-use=${ProfilePath}") else(HAVE_LTO) message(WARNING "LTO is not supported, skipping profile guided optimizations")