[libc-commits] [libc] [llvm] [APFloat] Add exp function for APFloat::IEEESsingle using expf implementation from LLVM libc. (PR #143959)
via libc-commits
libc-commits at lists.llvm.org
Sun Jul 20 10:14:18 PDT 2025
================
@@ -644,6 +644,17 @@ endif()
set(LLVM_ENABLE_Z3_SOLVER_DEFAULT "${Z3_FOUND}")
+set(LLVM_INTEGRATE_LIBC "OFF" CACHE STRING "Use LLVM libc code directly if available.")
+
+if(LLVM_INTEGRATE_LIBC)
+ message(STATUS "LLVM_INTEGRATE_LIBC is ${LLVM_INTEGRATE_LIBC}")
+ include(FindLibcCommonUtils)
+ if(NOT TARGET llvm-libc-common-utilities)
+ message(STATUS "LLVM_INTEGRATE_LIBC is set but cannot find LLVM libc at ${libc_path}.")
+ set(LLVM_INTEGRATE_LIBC OFF)
+ endif()
+endif()
+
----------------
lntue wrote:
We are actually ramping up the support for other platforms like macOS and Windows. At the moment, we have pre-commit CIs for both macOS and Windows, and we are in the process of adding post-commit bots for Windows and MacOS.
https://github.com/llvm/llvm-project/pull/143959
More information about the libc-commits
mailing list