summaryrefslogtreecommitdiff
path: root/configure
AgeCommit message (Collapse)AuthorFilesLines
2012-06-06make configure try to disable stack protectorRich Felker1-0/+2
in theory we could support stack protector in the libc itself, and users wanting to experiment with such usage could add -fstack-protector to CFLAGS intentionally. but to avoid breakage in the default case, override broken distro-patched gcc that forces stack protector on.
2012-06-06add configure check for gnu linker hash style settingRich Felker1-1/+20
some broken distro-provided toolchains have modified gcc to produce only "gnu hash" dynamic hash table by default. as this is unsupported by musl, that results in a non-working libc.so. we detect and switch this on in configure rather than hard-coding it in the Makefile because it's not supported by old binutils versions, but that might not even be relevant since old binutils versions already fail from -Bsymbolic-functions being missing. at some point I may review whether this should just go in the Makefile...
2012-06-03fix configure build/host/target terminology usageRich Felker1-13/+14
2012-05-14yet another try to get the check for gcc right...Rich Felker1-1/+1
2012-05-14fix error in last configure change (lack of escaping)Rich Felker1-1/+1
2012-05-13correct the check for gcc (previous version failed for cross compilers)Rich Felker1-1/+1
2012-05-05add -frounding-math to buildRich Felker1-0/+1
2012-05-04initial commit of configure scriptRich Felker1-0/+275
this script is not based on autoconf; however it attempts to follow the same interface contracts for ease of integration with build systems. it is also not necessary to use musl. manually written config.mak files are still supported, as is building without any config.mak at all as long as you are happy with the default options and you supply at least ARCH on the command line to make.