[compiler-rt] [PGO][test] Enable continuous mode PGO tests on AIX (PR #115987)

Wael Yehia via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 14 11:30:02 PST 2024


================
@@ -154,6 +157,16 @@ def exclude_unsupported_files_for_aix(dirname):
     )
 )
 
+config.substitutions.append(
+    ("%clang_profgen_cont", build_invocation(clang_cflags) + " -fprofile-instr-generate " +
+          ("-mllvm -runtime-counter-relocation" if runtime_reloc else ""))
+)
+
+config.substitutions.append(
+    ("%clang_pgogen_cont", build_invocation(clang_cflags) + " -fprofile-generate " +
+         ("-mllvm -runtime-counter-relocation" if runtime_reloc else ""))
+)
+
----------------
w2yehia wrote:

done. thanks.

https://github.com/llvm/llvm-project/pull/115987


More information about the llvm-commits mailing list