1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 02:33:06 +01:00

[gn build] Fix llvm_build_instrumented_coverage=true builds with goma/rbe

This commit is contained in:
Nico Weber 2021-07-19 19:57:02 -04:00
parent be7020e420
commit 4ebc105ec1

View File

@ -233,6 +233,14 @@ config("compiler_defaults") {
"-fprofile-instr-generate=" +
rebase_path("$root_build_dir/profiles/%4m.profraw"),
]
if (use_goma) {
# goma has a bug where it writes the server-side absolute path.
# Work around that.
# FIXME: Instead, set this to `.` for deterministic builds and pass
# the build dir to prepare-code-coverage-artifact.py instead.
cflags += [ "-fcoverage-compilation-dir=" + rebase_path(root_build_dir) ]
}
if (host_os != "win") {
ldflags += [ "-fprofile-instr-generate" ]
}