Skip to content

Commit e6c3289

Browse files
authored
[CMake][Release] Disable PGO (llvm#88465) (llvm#89000)
Running the test-release.sh script with PGO enabled causes build errors like: ld.lld: error: Function Import: link error: linking module flags 'ProfileSummary': IDs have conflicting values I believe this a build system bug due to the PGO profile data being generated unconditionally. If you run `ninja check-all` and then `ninja install` like we do in test-release.sh, then the profile data is regenerated during `ninja install` and some of the clang tools which are not test dependencies get build during the ninja install step with different profile data. When these tools link against the LLVM libraries, like libSupport, we end up with these errors. (cherry picked from commit 0d2bb7f)
1 parent 028e425 commit e6c3289

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/cmake/caches/Release.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# General Options
66
set(LLVM_RELEASE_ENABLE_LTO THIN CACHE STRING "")
7-
set(LLVM_RELEASE_ENABLE_PGO ON CACHE BOOL "")
7+
set(LLVM_RELEASE_ENABLE_PGO OFF CACHE BOOL "")
88

99
set(CMAKE_BUILD_TYPE RELEASE CACHE STRING "")
1010

0 commit comments

Comments
 (0)