Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-12-10 | Solve warning about redefined _GNU_SOURCE, allow iconv to build | Peter S. Mazinger | |
2005-12-09 | touchup style | Mike Frysinger | |
2005-12-08 | Add -DNOT_IN_libc to disable the libc-internal.h stuff | Peter S. Mazinger | |
2005-12-06 | Correct typo, iconv binary does not use the internal versions | Peter S. Mazinger | |
2005-11-25 | Change HOSTCFLAGS to BUILD_CFLAGS proposed by vapier | Peter S. Mazinger | |
2005-11-25 | Same for utils, renamed install_utils to utils_install to avoid conflict ↵ | Peter S. Mazinger | |
when added to top Makefile.in | |||
2005-11-25 | Rename NATIVE_LDFLAGS to BUILD_LDFLAGS proposed by vapier | Peter S. Mazinger | |
2005-11-24 | Move _GNU_SOURCE from file to CFLAGS, make use of NATIVE_LDFLAGS | Peter S. Mazinger | |
2005-11-23 | update license | Mike Frysinger | |
2005-11-23 | Make utils includable into main Makefile.in, add compile.u and hcompile.u, ↵ | Peter S. Mazinger | |
usable in utils and probably tests. vapier, please quite them if you want to | |||
2005-11-22 | use the local elf.h since the host toolchain probably sucks #555 | Mike Frysinger | |
2005-11-21 | fix bswap32/bswap16 macros for non-linux targets as reported by Melange in ↵ | Mike Frysinger | |
Bug 553 | |||
2005-11-21 | Do not create header links, use -I to find them. Moved dl-progname.h to ↵ | Peter S. Mazinger | |
ldso/ldso, that will exist if top_srcdir != top_builddir. | |||
2005-11-18 | Replace TOPDIR, add/update copyright | Peter S. Mazinger | |
2005-11-18 | Replace TOPDIR | Peter S. Mazinger | |
2005-11-15 | use $TOPDIR instead of ../ and utilize -B so that our target utils use the ↵ | Mike Frysinger | |
correct crt files | |||
2005-11-15 | update license info | Mike Frysinger | |
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-05 | ldd does not build due to missing fork() on MMUless. Since ldd merely | Eric Andersen | |
does a fork/exec, fork() can be trivially replaced with vfork() | |||
2005-10-01 | chroot_realpath.c is a dependency also for target ldconfig | Peter S. Mazinger | |
2005-09-30 | Allow ldconfig.host to build ld.so.cache for target, regardless of | Eric Andersen | |
the target system's byteorder | |||
2005-09-28 | use local header files rather than toolchain header files #444 by ee_doright | Mike Frysinger | |
2005-09-24 | make sure our utils link against the currently built libc rather than the ↵ | Mike Frysinger | |
toolchain one | |||
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 | clean 32bit-isms and make code 64/32 bit clean | Mike Frysinger | |
2005-09-21 | touchup CFLAGS and also link the link.h header file like we do with elf.h | Mike Frysinger | |
2005-09-21 | utils should be built all the time (iconv), disable building readelf | Peter S. Mazinger | |
2005-08-18 | add __thumb__ check | Mike Frysinger | |
2005-08-11 | touchup PIE support for all the utils and fix stripping on iconv | Mike Frysinger | |
2005-08-09 | need -s for STRIPTOOL with iconv too as psm pointed out | Mike Frysinger | |
2005-08-09 | need to run STRIPTOOL with -s to replace behavior lost from gcc -s | Mike Frysinger | |
2005-08-08 | remove strip flags and let STRIPTOOL do the work | Mike Frysinger | |
2005-07-29 | get rid of LDPIEFLAG since PIEFLAG is already used | Mike Frysinger | |
2005-04-19 | Correct typo, matching correction made to elf.h | Eric Andersen | |
2005-02-12 | no more cvs | Mike Frysinger | |
2005-01-18 | white space clean up | Mike Frysinger | |
2005-01-16 | Per http://bugs.uclibc.org/view.php?id=15, patch from kergoth: | Eric Andersen | |
Sometimes it is desirable to build ldconfig non-static. | |||
2005-01-12 | cleanup, and prevent failures due to including architecture specific | Eric Andersen | |
header files into ldconfig when building for the host. | |||
2005-01-11 | Remove the no-longer-needed #include <sys/user.h> | Eric Andersen | |
2004-12-23 | Fix thinko | Eric Andersen | |
2004-12-22 | Cleanup for when LDSO_CACHE_SUPPORT is disabled | Eric Andersen | |
2004-12-22 | Cleaned up patch from Peter S. Mazinger adding support for | Eric Andersen | |
-fstack-protector and -fno-stack-protector-all security options | |||
2004-12-09 | Don't use PAGE_SIZE, instead just a local BUFFER_SIZE define | Eric Andersen | |
2004-12-08 | Use PAGE_SIZE, not 4096 | Eric Andersen | |
2004-10-15 | Rip out Peter's unacceptable "fix" and do the sane thing instead; build | Manuel Novoa III | |
the utils using the uClibc-targeted toolchain. | |||
2004-10-14 | Peter Mazinger writes: | Joakim Tjernlund | |
The attached patch generalizes the use of PIE (all archs are brought in sync that use/mention it: x86/ppc/frv) and makes use of it building the target utils. Tested on x86, ppc should be tested, frv uses -fPIE at one location, but at another place -fpie, I don't know which is correct (could be both) and misses the target addition in Config.in. The test for ppc (requires the earlier sent crt-correction patch to work correctly): enable UCLIBC_PIE_SUPPORT, build uClibc and utils, check: file ./utils/ldd, it should show shared object (instead of executable) | |||
2004-10-14 | Peter Mazinger writes: | Joakim Tjernlund | |
The attached patch is an updated version of an earlier sent patch It solves the problem that the target utils (ldconfig/ldd/iconv, readelf is not handled, but can be easily added) are not built w/ the newly created [S]crt[01].o files. | |||
2004-10-06 | Remove empty file | Eric Andersen | |
2004-10-06 | Add type libc0 to cache_print(). | Joakim Tjernlund | |
Always strip trailing slaches(/) from paths read from ld.so.conf. | |||
2004-10-06 | Peter S. Mazinger writes: | Joakim Tjernlund | |
The attached patches make iconv use XXFLAGS and adapts ldd.host to cvs. |