Re: Building libm library
Harish <[email protected]>
| Newsgroups | gmane.comp.lib.newlib |
|---|---|
| Message-ID | <CA+BROwAVPJaMwZ5P0eBNPVf_HumbDyKQe5_4oYYuJ_XzrsOHHw@mail.gmail.com> |
Thanks, Paul. I'm able to build Newlib. On Mon, Jul 19, 2021 at 1:49 PM Paul Zimmermann <[email protected]> wrote: > Hi Harish, > > > I would like to build just libm.a library, is it possible? if yes, please > > let me know how can I do it. > > I don't know if this answers your question, but here is how I compile > Newlib > libm.a on x86_64 under Linux: > > tar xf newlib-4.1.0.tar.gz > cd newlib-4.1.0 > mkdir build > cd build > ../configure --prefix=/tmp --target=x86_64 --disable-multilib > make -j4 > > Best regards, > Paul >