Re: Building libm library
Paul Zimmermann <[email protected]>
| Newsgroups | gmane.comp.lib.newlib |
|---|---|
| Message-ID | <[email protected]> |
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