Name Date Size #Lines LOC

..--

aarch64/H--5518

amd64/H--1,652836

arm/H--5518

bsdsrc/H--1,028635

docs/H--613499

i387/H--2,7991,472

include/H--2,2231,493

ld128/H--6,3354,124

ld80/H--5,2192,981

mips/H--254132

powerpc/H--5118

s390/H--5318

src/H--23,82112,287

test/H--5,1313,727

.gitignoreH A D20-Jun-201438 87

.mailmapH A D24-Aug-20122.9 KiB6246

.travis.ymlH A D18-Jun-20183.5 KiB10795

LICENSE.mdH A D18-Jun-20185.7 KiB116103

Make.incH A D07-Nov-20183.3 KiB149124

MakefileH A D07-Nov-20183 KiB10276

README.mdH A D18-Jun-20181.6 KiB3828

appveyor.ymlH A D18-Jun-20181.4 KiB3831

openlibm.pc.inH A D18-Jun-2018273 119

README.md

1# OpenLibm
2
3[![Travis](https://travis-ci.org/JuliaMath/openlibm.svg?branch=master)](https://travis-ci.org/JuliaMath/openlibm)
4[![AppVeyor](https://ci.appveyor.com/api/projects/status/sia04r4089rr19uc/branch/master?svg=true)](https://ci.appveyor.com/project/ararslan/openlibm-19152/branch/master)
5
6[OpenLibm](http://www.openlibm.org) is an effort to have a high quality, portable, standalone
7C mathematical library ([`libm`](http://en.wikipedia.org/wiki/libm)).
8It can be used standalone in applications and programming language
9implementations.
10
11The project was born out of a need to have a good `libm` for the
12[Julia programming langage](http://www.julialang.org) that worked
13consistently across compilers and operating systems, and in 32-bit and
1464-bit environments.
15
16## Platform support
17
18OpenLibm builds on Linux, Mac OS X, Windows, FreeBSD, OpenBSD, and
19DragonFly BSD.  It builds with both GCC and clang. Although largely
20tested and widely used on the x86 and x86-64 architectures, OpenLibm
21also supports arm, aarch64, ppc64le, and mips.
22
23## Build instructions
24
251. Use GNU Make to build OpenLibm. This is `make` on most systems, but `gmake` on BSDs.
262. Use `make USEGCC=1` to build with GCC. This is the default on
27   Linux and Windows.
283. Use `make USECLANG=1` to build with clang. This is the default on OS X, FreeBSD,
29   and OpenBSD.
304. Architectures are auto-detected. Use `make ARCH=i386` to force a
31   build for i386. Other supported architectures are i486, i586, and
32   i686. GCC 4.8 is the minimum requirement for correct codegen on
33   older 32-bit architectures.
34
35## Acknowledgements
36
37PowerPC support for openlibm was graciously sponsored by IBM.
38