[libc-commits] [libc] [llvm] [APFloat] Add exp function for APFloat::IEEESsingle using expf implementation from LLVM libc. (PR #143959)

Farzon Lotfi via libc-commits libc-commits at lists.llvm.org
Mon Dec 15 07:31:49 PST 2025


================
@@ -28,6 +28,9 @@
 #include <cstring>
 #include <limits.h>
 
+// Shared headers from LLVM libc
+#include "shared/math.h"
----------------
farzonl wrote:

Hi this line seems to have broken the build for me locally
```
llvm-project/llvm/lib/Support/APFloat.cpp:32:10: fatal error: 'shared/math.h' file not found
   32 | #include "shared/math.h"
      |          ^~~~~~~~~~~~~~~
1 error generated.
```

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


More information about the libc-commits mailing list