[libc] [llvm] [APFloat] Add exp function for APFloat::IEEESsingle using expf implementation from LLVM libc. (PR #143959)
Nikita Popov via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 27 00:24:12 PDT 2025
================
@@ -379,3 +379,9 @@ if(LLVM_WITH_Z3)
${Z3_INCLUDE_DIR}
)
endif()
+
+if(LLVM_INTEGRATE_LIBC)
+ set_property(TARGET LLVMSupport PROPERTY CXX_STANDARD 17)
+ target_include_directories(LLVMSupport PRIVATE "${LLVM_INCLUDE_DIR}/../../libc")
----------------
nikic wrote:
I'd expect that this would become a required dependency before we can actually start using it somewhere.
https://github.com/llvm/llvm-project/pull/143959
More information about the llvm-commits
mailing list