summaryrefslogtreecommitdiff
path: root/utils
AgeCommit message (Collapse)Author
2009-06-28utils: punt readelfMike Frysinger
This miniature version of readelf has never been terribly useful and has caused significantly more headaches in its maintenance, so punt it. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2009-02-10include more info in error messages so we have a better idea where things ↵Mike Frysinger
are failing
2009-02-10add mmap()/munmap() implementation for WindowsMike Frysinger
2009-02-09unify byte order cruft in bswap.h and porting.h and add a bswap_64() replacementMike Frysinger
2009-02-09unify the headers/random defines into porting.h to avoid duplication/rotMike Frysinger
2009-02-09dont force -Wl,-s when building host utils -- people can strip themselvesMike Frysinger
2009-01-28Partially revent "make utils" fix. This version is less intrusive,Denis Vlasenko
but still works! :)
2009-01-28"make utils" now successfully makes utils for targetDenis Vlasenko
2009-01-14- make sure not to have relocs in Scrt1.o (Peter S. Mazinger)Bernhard Reutner-Fischer
2009-01-11utils/Makefile.in: de-obfuscate it a bitDenis Vlasenko
Rules.mak: use -Os, not -O2
2009-01-10simple optimizations and style fixes in dynamic loadingDenis Vlasenko
text data bss dec hex filename - 16709 240 92 17041 4291 lib/ld-uClibc.so + 16634 236 92 16962 4242 lib/ld-uClibc.so - 4602 344 4 4950 1356 lib/libdl-0.9.30-svn.so + 4571 328 4 4903 1327 lib/libdl-0.9.30-svn.so - 4602 344 4 4950 1356 lib/libdl.so + 4571 328 4 4903 1327 lib/libdl.so
2008-12-22- fix for !GETOPT_LONGBernhard Reutner-Fischer
2008-12-16- install utils into the proper directoriesBernhard Reutner-Fischer
2008-12-10Remove hardwired usr/ from install_utils (that's what $RUNTIME_PREFIX is for)Rob Landley
and add install_hostutils. Now install_utils should use $PREFIX more like other packages do.
2008-11-09- Add temporary hack to wipe dep files even on clean for utils.Bernhard Reutner-Fischer
utils lives outside of the normal build so this is needed until it is properly pulled into the normal system.
2008-11-07- less verbose make cleanBernhard Reutner-Fischer
2008-10-29- minor shrinkage (-50b)Bernhard Reutner-Fischer
2008-10-09- tidy up utils_installBernhard Reutner-Fischer
2008-10-09- fix errno setting (we're outside of libc here)Bernhard Reutner-Fischer
2008-10-03- use c89-style commentsBernhard Reutner-Fischer
Closes issue #5194
2008-08-27- remove a couple of duplicate includesBernhard Reutner-Fischer
2008-07-23- fix inline keywordBernhard Reutner-Fischer
2008-05-02Added implementation for 'locale' command.Carmelo Amoroso
Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com>
2008-03-26- trim trailing whitespace. No object-code changes.Bernhard Reutner-Fischer
2008-03-26- fixup stripping of host utils and make host-utils compile with std=gnu99Bernhard Reutner-Fischer
2007-11-16Added AVR32 support to uClibc. Signed-off-by: Hans-Christian Egtvedt ↵Carmelo Amoroso
<hcegtvedt@atmel.com>
2007-04-17if chroot() failed, then reset "chroot_dir" to "." so that after we do our ↵Mike Frysinger
fallback chdir(), we dont continue to prefix the chroot path ... fixes `ldconfig.host -r some/dir/`
2007-04-17cleanup style; no functional changesMike Frysinger
2007-04-17fix ld.so.cache handling on no-mmu setupsMike Frysinger
2007-03-14more ifdef tweaks from holin (#1247) for retarded hosts (like OS X)Mike Frysinger
2007-01-28fix typo as pointed out by Tony Wu and cleanup sourceMike Frysinger
2006-12-12- fix compilation of __LDSO_CACHE_SUPPORT__Bernhard Reutner-Fischer
s/dprintf(2/fprintf(stderr/g
2006-10-07the makefile will include elf.h for us #778Mike Frysinger
2006-07-05replace my @debian.org addr with @uclibc.org. Fixup license onEric Andersen
readelf and ldd to again state that they are GPLv2
2006-07-05update licenseMike Frysinger
2006-05-26the 16/32 swap funcs were swapped #875Mike Frysinger
2006-02-26remove warning since it seems to have "gone away" nowMike Frysinger
2006-02-15make sure we first search for libraries in the newly built tree rather than ↵Mike Frysinger
the compiler path
2006-01-22Enable _GNU_SOURCE build wide, trying to get consistent interfaces, else IMA ↵Peter S. Mazinger
is a useless attempt
2006-01-11remove newlines from warning messagesMike Frysinger
2006-01-03import a bunch of defines from gnu binutils including blackfin for Lie ZhangMike Frysinger
2005-12-30tell people to ignore these two warnings unless someone can figure out how ↵Mike Frysinger
to make them go away ... the vfork() is safe due to the logic following it
2005-12-30use ElfW(Addr) instead of ElfW(Word) since elf word types are always 32bits ↵Mike Frysinger
in size, even on 64bit hosts, while Addr is the proper native size ... also get creative with our signed/unsigned usage to get rid of warnings
2005-12-30need to make sure elf_find_dynamic(key) is big enough to handle 64bit hostsMike Frysinger
2005-12-29fix signed/unsigned warningsMike Frysinger
2005-12-10Solve warning about redefined _GNU_SOURCE, allow iconv to buildPeter S. Mazinger
2005-12-09touchup styleMike Frysinger
2005-12-08Add -DNOT_IN_libc to disable the libc-internal.h stuffPeter S. Mazinger
2005-12-06Correct typo, iconv binary does not use the internal versionsPeter S. Mazinger
2005-11-25Change HOSTCFLAGS to BUILD_CFLAGS proposed by vapierPeter S. Mazinger