Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-11-21 | Remove TOPDIR | Peter S. Mazinger | |
2005-10-29 | Replace all Makefiles for new build infrastucture | Peter S. Mazinger | |
2005-10-28 | Backport handling of AS_NEEDED | Peter S. Mazinger | |
2005-10-12 | Rewrote almost all Makefiles: do not use strip $(x),y; run strip on all ↵ | Peter S. Mazinger | |
objects at once; use :=//$</$^; use CRT_SRC/CRT_OBJ/SCRT_OBJ/CSRC/COBJ/SSRC/SOBJ/MSRC/MOBJ where no more is needed, if only CSRC is present use OBJS directly instead of COBJ; CTOR_TARGETS are created directly in lib; remove unused/unneeded parts. Hope I haven't broken too much. | |||
2005-10-11 | Do not defer expansions where useless, like CSRC/OBJS/LIB_NAME/AR_LIB_NAME, ↵ | Peter S. Mazinger | |
defer only for shared lib related stuff, because it is optional. Run STRIPTOOL only once. More use of /$^/$<. | |||
2005-09-28 | Oops, libc.a didn't got installed | Peter S. Mazinger | |
2005-09-28 | Remove ar-target and shared targets, at build time now we traverse the tree ↵ | Peter S. Mazinger | |
only once. Generalize all toplevel makefiles. Make sure, that libdl.so is built against libc.so and not libc.a | |||
2005-09-27 | Provide atexit() for static builds | Peter S. Mazinger | |
2005-09-26 | Add __cxa_atexit and __cxa_finalize, thanks to Stephen Warren. This patch ↵ | Peter S. Mazinger | |
breaks compatibility with existing binaries, unless the new COMPAT_ATEXIT option is enabled. | |||
2005-09-22 | no check needed in libm/libpthread, we do not recurse anymore if the related ↵ | Peter S. Mazinger | |
option is not set, more Makefile cleanups | |||
2005-09-22 | Makefile cleanups | Peter S. Mazinger | |
2005-08-12 | Removed hardcoded ld-uClibc.so.0 in uClibc. From Peter Mazinger. | Joakim Tjernlund | |
2005-07-28 | further refine output so the silent mode of make is truly silent | Mike Frysinger | |
2005-06-30 | remove pointless exit 1 ... if $(AR) fails then make will abort ok | Mike Frysinger | |
2005-06-30 | Oops, fix link fail. | Joakim Tjernlund | |
2005-06-29 | Add __libc_stack_end to libc. | Joakim Tjernlund | |
2005-05-26 | Removed -z defs as a more general solution is in the works. | Joakim Tjernlund | |
2005-05-21 | Pass main function ptr from crt1 to __uClibc_start_main. | Joakim Tjernlund | |
Kill old crt0/__uClibc_main. This breaks ABI. All apps and toolchain needs to be recompiled. All archs except x86 are now broken and need to be fixed as x86. PPC will be fixed shortly by me, the rest is left to the arch maintainers. | |||
2005-02-13 | touchup the $(AR) mojo to address some bugs by Peter Kjellerstedt | Mike Frysinger | |
2005-01-25 | merge parallel build support | Mike Frysinger | |
2005-01-19 | fix target dependencies to support parallel building | Mike Frysinger | |
2005-01-19 | use $(RANLIB) | Mike Frysinger | |
2004-10-14 | Remove unused stuff. From Peter Mazinger. | Joakim Tjernlund | |
2004-01-16 | Link with libfloat if necessary. | Manuel Novoa III | |
2004-01-14 | Ok.. we need to link with libgcc.a for some archs. I haven't looked at | Manuel Novoa III | |
all cases, but the archs I've looked at do build the needed routines as PIC so we should be ok. | |||
2003-11-04 | minor cleanup | Eric Andersen | |
2003-10-31 | Some more soft float fixes... for arm in particular (libfloat). | Manuel Novoa III | |
Remove the ADD_LIBGCC_FUNCTIONS option and do things the right way. Either we have a shared libgcc available, or the libgcc routines aren't PIC and don't belong in the shared libc anyway. | |||
2003-10-18 | Peter Kjellerstedt writes: | Eric Andersen | |
ln.patch: * Define $(LN) as ln in Rules.mak. * Change all occurrences of ln into $(LN). * Change all constructs like (cd path && ln -sf foo/file file) into $(LN) -sf foo/file path/file. The latter construct is already used in a number of places so it should not be an additional compatibility problem. | |||
2003-10-18 | Peter Kjellerstedt writes: | Eric Andersen | |
rm.patch: * Define $(RM) as rm -f in Rules.mak and test/Rules.mak (this is the same definition as gmake uses by default). * Change all occurrences of rm and rm -f into $(RM). | |||
2003-10-18 | Peter Kjellerstedt writes: | Eric Andersen | |
install.patch: * Define $(INSTALL) as install in Rules.mak. * Change all occurrences of install into $(INSTALL). * Change all occurrences of mkdir -p into $(INSTALL) -d. install -d is already used in a number of places so this should not be an additional compatibility problem. | |||
2003-09-11 | Peter Kjellerstedt writes: | Eric Andersen | |
The attached patch allows $(CC) to contain spaces (something which we use). | |||
2003-06-05 | Patch from Peter S. Mazinger to make the get-needed-libgcc-objects | Eric Andersen | |
script work with newer binutils versions. | |||
2003-02-05 | Patch from Stefan Allius to make adding libgcc functions to the library an | Eric Andersen | |
option, to avoid the possibility of adding non PIC code into the shared PIC uClibc library, thereby making the .text segment unshareable. | |||
2003-01-23 | Cleanup makefiles and make clean a bit | Eric Andersen | |
2002-11-27 | Make support for global constructors and global destructors be | Eric Andersen | |
configurable, so people who do not need or want ctor/dtor support can disable it and make their binaries a little bit smaller. -Erik | |||
2002-11-08 | Patch from Stefan Allius for libgcc multilib support | Eric Andersen | |
this is the last patch, we need to make the support of multitarget libgcc complete. --------------------------------- In ldso/ldso/Makefile I added the CPU_LDFLAGS-y to the LDFLAGS --------------------------------- In libc/Makefile I set the LDFLAGS for the script get-needed-objects.sh with CPU_LDFLAGS-y --------------------------------- In extra/scripts/get-needed-object.sh we now use the LIBGCC from Rules.mak and call LD with LDFLAGS (==CPU_LDFLAGS-y). Addtionally I grep the NM output, to fix the unresolved external __GLOBAL_OFFSET_TABLE__ on SuperH targets. --------------------------------- | |||
2002-11-05 | Patch from Stefan Allius -- export LIBGCC | Eric Andersen | |
2002-10-25 | Put it back the way it was. Sigh. | Eric Andersen | |
2002-10-25 | Sigh. Lets not use LD to link, or we lose the INTERP field. | Eric Andersen | |
-Erik | |||
2002-10-01 | This commit contains a patch from Stefan Allius <allius@atecom.com> to change | Eric Andersen | |
how uClibc handles _init and _fini, allowing shared lib constructors and destructors to initialize things in the correct sequence. Stefan ported the SH architecture. I then ported x86, arm, and mips. x86 and arm are working fine, but I don't think I quite got things correct for mips. | |||
2002-09-16 | * Added semi-support for version scripts. If sysdeps/linux/<arch>/libc.map | Tobias Anderberg | |
exists read it and include it when linking. * Add LIBGCC when linking libc. | |||
2002-08-09 | Be more path independent | Eric Andersen | |
2002-03-13 | Build our own crti.o and crtn.o with a cross arch method that I | Eric Andersen | |
can live with much better the what glibc does. -Erik | |||
2002-02-18 | Make shared libs properly list the correct ld.so in the interp | Eric Andersen | |
field by being sneaky. | |||
2002-01-28 | Fix the bug where binaries built with older toolchains would | Eric Andersen | |
segfault. Turns out that 'ld -nostdlib' was the culprit. Who wouldof thought... -Erik | |||
2002-01-16 | Tell ld explicitly when stuff is supposed to by dynamically linked | Eric Andersen | |
-Erik | |||
2002-01-12 | Make libc depend on ldso | Eric Andersen | |
2002-01-11 | Cleanup makfile, use ld to avoid chicken-and-egg problems when | Eric Andersen | |
building gcc/g++. -Erik | |||
2002-01-09 | Be more carefull about erroring out of shell fragments. Try to | Eric Andersen | |
enable -falign-functions if avilable. | |||
2002-01-01 | Change all 'cd <foo>; bar' constructs to 'cd <foo> && bar' for | Eric Andersen | |
proper error checking -Erik |