mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-04-03 17:17:13 +02:00
Fork of the OpenLibm math library with fx-9860G and fx-CG 50 support.
skip END and add .drectve export in assembly versions uncomment __strong_reference definition from cdefs-compat.h use weak references in place of strong references on Mac add DLLEXPORT to all strong references Fixes Julia issue #6777 |
||
---|---|---|
amd64 | ||
arm | ||
bsdsrc | ||
i387 | ||
ia64 | ||
include | ||
ld80 | ||
ld128 | ||
mips | ||
powerpc | ||
sparc64 | ||
src | ||
test | ||
.gitignore | ||
.mailmap | ||
LICENSE.md | ||
Make.inc | ||
Makefile | ||
README.md | ||
Symbol.map |
OpenLIBM
OpenLIBM is an effort to have a high quality standalone LIBM library. It is meant to be used standalone in applications and programming language implementations.
OpenLibm builds on Linux, Mac OS X, and Windows, and with little effort, should build on FreeBSD as well. It builds with both, GCC and clang.
The OpenLIBM code derives from the FreeBSD msun implementation, which in turn derives from FDLIBM 5.3. As a result, it has a number of fixes and updates that have accumulated over the years in msun, and also optimized assembly versions of many functions.
Build instructions:
make
ormake USEGCC=1
to build with GCC.make USECLANG=1
to build with clang.