| Commit message (Expand) | Author | Age | Files | Lines |
| * | get rid of eh_frame bloat•••if needed for debugging, it will be output in the .debug_frame section
instead, where it is not part of the loaded program and where the
strip command is free to strip it.
| Rich Felker | 2012-08-29 | 1 | -3/+12 |
| * | add gnu hash support in the dynamic linker•••based on the patches contributed by boris brezillon.
| Rich Felker | 2012-08-25 | 1 | -1/+1 |
| * | support configuring cross compiling with CROSS_COMPILE prefix variable | Rich Felker | 2012-08-14 | 1 | -3/+6 |
| * | make configure accept mipsel | Rich Felker | 2012-08-05 | 1 | -1/+1 |
| * | remove configure check disabling shared libraries on mips | Rich Felker | 2012-08-05 | 1 | -4/+0 |
| * | disable dynamic linking on mips for now (broken) | Rich Felker | 2012-07-12 | 1 | -0/+5 |
| * | initial version of mips (o32) port, based on work by Richard Pennington (rdp)•••basically, this version of the code was obtained by starting with
rdp's work from his ellcc source tree, adapting it to musl's build
system and coding style, auditing the bits headers for discrepencies
with kernel definitions or glibc/LSB ABI or large file issues, fixing
up incompatibility with the old binutils from aboriginal linux, and
adding some new special cases to deal with the oddities of sigaction
and pipe syscall interfaces on mips.
at present, minimal test programs work, but some interfaces are broken
or missing. threaded programs probably will not link.
| Rich Felker | 2012-07-11 | 1 | -0/+1 |
| * | configure: only use -ffloat-store on i386•••this option is expensive and only used on old gcc's that lack
-fexcess-precision=standed, but it's not needed on non-i386 archs
where floating point does not have excess precision anyway.
if musl ever supports m68k, i think it will need to be special-cased
too. i'm not aware of any other archs with excess precision.
| Rich Felker | 2012-07-03 | 1 | -1/+1 |
| * | check for ld support of -Bsymbolic-functions; disable shared if not avail•••this issue affects the last gpl2 version of binutils, which some
people are still using out of aversion to gpl3. musl requires
-Bsymbolic-functions because it's the only way to make a libc.so
that's able to operate prior to dynamic linking but that still behaves
correctly with respect to global vars that may be moved to the main
program via copy relocations.
| Rich Felker | 2012-06-07 | 1 | -0/+7 |
| * | use -nostdlib in linker tests to avoid possible missing crt/lib issues | Rich Felker | 2012-06-07 | 1 | -1/+1 |
| * | avoid linking main program in linker tests•••it's possible that the user has provided a compiler that does not have
any libc to link to, so linking a main program is a bad idea. instead,
generate an empty shared library with no dependencies.
| Rich Felker | 2012-06-07 | 1 | -2/+2 |
| * | make configure try to disable stack protector•••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.
| Rich Felker | 2012-06-06 | 1 | -0/+2 |
| * | add configure check for gnu linker hash style setting•••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...
| Rich Felker | 2012-06-06 | 1 | -1/+20 |
| * | fix configure build/host/target terminology usage | Rich Felker | 2012-06-03 | 1 | -13/+14 |
| * | yet another try to get the check for gcc right... | Rich Felker | 2012-05-14 | 1 | -1/+1 |
| * | fix error in last configure change (lack of escaping) | Rich Felker | 2012-05-14 | 1 | -1/+1 |
| * | correct the check for gcc (previous version failed for cross compilers) | Rich Felker | 2012-05-13 | 1 | -1/+1 |
| * | add -frounding-math to build | Rich Felker | 2012-05-05 | 1 | -0/+1 |
| * | initial commit of configure script•••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.
| Rich Felker | 2012-05-04 | 1 | -0/+275 |