[Openmp-commits] [openmp] [OpenMP] Add extra flags to libomptarget and plugin builds (PR #74520)
Johannes Doerfert via Openmp-commits
openmp-commits at lists.llvm.org
Tue Dec 5 12:42:44 PST 2023
================
@@ -55,6 +55,22 @@ target_compile_definitions(omptarget PRIVATE
DEBUG_PREFIX="omptarget"
)
+target_compile_options(omptarget PRIVATE -fno-exceptions)
+
+if(NOT LLVM_ENABLE_RTTI)
+ target_compile_options(omptarget PRIVATE -fno-rtti)
+endif()
+
+include(CheckIPOSupported)
+check_ipo_supported(RESULT use_lto OUTPUT output)
+if(use_lto)
----------------
jdoerfert wrote:
That was my plan, yes. I don't see a reason not to. Compile time/memory is usually the only reason, and it should not apply here (too small).
https://github.com/llvm/llvm-project/pull/74520
More information about the Openmp-commits
mailing list