about summary refs log tree commit diff
path: root/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* fix a few bugs from last dynamic linking build system commitRich Felker2011-06-281-2/+2
| | | | some cruft was left and DESTDIR was not being used correctly.
* cleanup shared library build system to be more $HOME-local-install friendlyRich Felker2011-06-271-13/+15
| | | | | the path for the dynamic linker is now configurable, and failure to install the symlink for it will not stop the build.
* use soname in ld-musl.so to prevent filename appearing in DT_NEEDEDsRich Felker2011-06-241-1/+1
|
* use symlink rather than bogus linker script for libc.soRich Felker2011-06-241-2/+2
| | | | the linker script caused a bogus DT_NEEDED entry
* adapt build/install/gcc-wrapper systems for dynamic linking supportRich Felker2011-06-231-5/+15
|
* various changes in preparation for dynamic linking supportRich Felker2011-02-241-3/+3
| | | | | | | | | | | | | | | | | prefer using visibility=hidden for __libc internal data, rather than an accessor function, if the compiler has visibility. optimize with -O3 for PIC targets (shared library). without heavy inlining, reloading the GOT register in small functions kills performance. 20-30% size increase for a single libc.so is not a big deal, compared to comparaible size increase in every static binaries. use -Bsymbolic-functions, not -Bsymbolic. global variables are subject to COPY relocations, and thus binding their addresses in the library at link time will cause library functions to read the wrong (original) copies instead of the copies made in the main program's bss section. add entry point, _start, for dynamic linker.
* avoid deleting the lib/empty fileRich Felker2011-02-171-1/+1
|
* new solution for empty lib dir (old one had some problems)Rich Felker2011-02-171-7/+5
|
* improve Makefile handling of git checkouts with missing lib/ and config.makRich Felker2011-02-171-4/+8
|
* finish unifying thread register handling in preparation for portingRich Felker2011-02-151-1/+1
|
* preparing build system to handle ports - step 1Rich Felker2011-02-151-0/+6
|
* ensure that musl is compiled as C99 code & XSI option is available in headersRich Felker2011-02-131-1/+1
|
* initial check-in, version 0.5.0 v0.5.0Rich Felker2011-02-121-0/+97