Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-11-12 | powerpc/elfinterp.c: Powerpc works now. Major rework; most relocs | David Schleef | |
should work now. R_PPC_JMP_SLOT correctly being lazily relocated. hash.h: Added a field in elf_resolve to store a ppc-specific address. boot1.c: Added debugging code. Disabled check that fails on powerpc because the string literal requires a reloc that isn't performed. Added check to ignore d_tag if it is out of bounds, as has been observed with powerpc binaries. | |||
2001-08-27 | elide some debug noise | Eric Andersen | |
2001-08-18 | Fix problem with possible redundant entries. | Eric Andersen | |
2001-08-17 | Fix a stupid bug causing the ld-uClibc entry to be lost. | Eric Andersen | |
2001-08-11 | Sync up ldd behavior | Eric Andersen | |
2001-08-11 | Fix the library searching routine so it is way simpler, and so | Eric Andersen | |
it matches the routine in ldd.c | |||
2001-08-11 | Begin removing some unnecessary inlining, and fix naming | Eric Andersen | |
of _dl_fprintf which should really be _dl_dprintf -Erik | |||
2001-08-10 | Update the build system, yet again. I hope this is the last time... | Eric Andersen | |
Here is the basic theory of operation: SHARED_LIB_LOADER_PATH/ <The location where the shared lib loader will be installed and where the compiler will cause apps to look for it.> DEVEL_PREFIX/ bin/ <contains gcc, ld, etc for setting PATH=$DEVEL_PREFIX/bin:$PATH> lib/ <contains all runtime and static libs> include/ <Where all the header files go> SYSTEM_DEVEL_PREFIX/ usr/bin/ <contains arch-uclibc-gcc, arch-uclibc-ld, etc that might be installed by a .deb or .rpm into /usr/bin, but can happily live under DEVEL_PREFIX> PREFIX This is prepended during 'make install's allowing you to shift things to be installed under some alternate location (such as when building a .deb) -Erik | |||
2001-08-08 | This syncs things up with my local tree. Mainly changes installer | Eric Andersen | |
issues, and syns things (as far as I am willing) with Dave Schleef's tree. We may need to go another round or so, but we do seem to be converging... | |||
2001-08-06 | Try search for the shared lib interpreter. Eliminate all double "//"s | Eric Andersen | |
from the output -Erik | |||
2001-08-06 | If /etc/ld.so.preload was size 0, the shared lib loader would | Eric Andersen | |
choke and die. Test for non-zero size as well, -Erik | |||
2001-07-17 | search_for_named_library forgot to wipe the target string, so each time | Eric Andersen | |
around the loop it was getting bigger... | |||
2001-07-17 | Turn off USE_CACHE by default (so ldconfig, by default, isn't | Eric Andersen | |
needed). Fix a stupid typo in dlib.c where I had several weak symbols set up backwards, breaking libdl (dlopen and friends), -Erik | |||
2001-07-17 | Fix missing function when USE_CACHE is enabled | Eric Andersen | |
-Erik | |||
2001-07-17 | Oops. USE_CACHE was disabled and didn't compile when enabled | Eric Andersen | |
since I'd forgotten a one liner... -Erik | |||
2001-07-17 | Forgot this... | Eric Andersen | |
2001-07-17 | Some cleanups needed for things to compile and work as expected | Eric Andersen | |
with the new build system... -Erik | |||
2001-07-13 | Scrub up a few things I forgot. Add a few more cleanups. | Eric Andersen | |
-Erik | |||
2001-07-13 | This takes about 6k off the size of the x86 shared lib loader... | Eric Andersen | |
-Erik | |||
2001-07-12 | This commit merges David Schleef's updates to the build system, which a | Eric Andersen | |
few tiny fixups here and there from me. Seems to work just fine and will hopefully be a bit better behaved. -Erik | |||
2001-07-12 | Added #ifdef DEBUG where appropriate. | David Schleef | |
Fixed icache clearing during _dl_init_got(). Added a few more reloc types. Added out-of-range check for R_PPC_REL24. | |||
2001-07-12 | First cut of PowerPC port. It works for hello world, but has lots | David Schleef | |
of debugging information is still there. | |||
2001-07-12 | Small fixups for powerpc | David Schleef | |
2001-07-11 | Rewrite of ldd so it works as expected, and does not invoke the | Eric Andersen | |
shared lib loader at all. This will allow us to throw out the support code for that from ld-linux.so.0 -Erik | |||
2001-07-10 | Fix the code for finding the interpreter, which was I had | Eric Andersen | |
totally screwed up the first time... -Erik | |||
2001-07-03 | Finish up merging the arm port into the main tree. | Eric Andersen | |
2001-07-03 | Merge the arm port into the main tree. The final version (the one that | Eric Andersen | |
actually works) is the most excellent work of Shane Nay <shane@minirl.com>, who took what I had been doing and fixed it. | |||
2001-07-03 | Merge arm support into the mainstream. This change is pretty | Eric Andersen | |
minor, just carefully memset 0 strings before using them, and also referencs strings via the GOT for ARM as well. -Erik | |||
2001-07-03 | Scrub a couple of ints | Eric Andersen | |
2001-07-03 | Allow the shared lib loader to fallback on the builddir if everything | Eric Andersen | |
else fails. Let <arch>-uclibc-gcc --uclibc-use-build-dir set the shared lib loader to the one in the builddir's path. -Erik | |||
2001-07-03 | Force our child libs to link vs libc | Eric Andersen | |
2001-06-27 | Cleanup to not use kernel headers at all. | Eric Andersen | |
-Erik | |||
2001-06-18 | This commit finishes adding support for the old m68k-coff toolchains by | Eric Andersen | |
working around a missing header file in the compiler shipped with the uCsimm and uCdimm. This should make the folk in Toronto happy, since now they can use the latest CVS version of uClibc. -Erik | |||
2001-06-15 | A few build updates | Eric Andersen | |
2001-06-15 | Make some nice SEND_ADDRESS_STDERR and SEND_NUMBER_STDERR macros that | Eric Andersen | |
operate inline, to help when debugging ldso (i.e. before we can do things like function calls). -Erik | |||
2001-06-15 | Now that our compiler wrapper is up to it, we can now use TARGET_CC | Eric Andersen | |
to compile ldso, simplifying the process of passing in special CFLAGS and such (and simplifying the build in general since we no longer need to go directly to LD to link things). -Erik | |||
2001-06-15 | Be consistant for all the client code, and use TARGET_CC with ↵ | Eric Andersen | |
--uclibc-use-build-dir | |||
2001-06-14 | Some silly grammar stuff | Eric Andersen | |
2001-06-14 | Yet more ldso cleanups. Be more discriminating about when using inlines | Eric Andersen | |
and when using real functions. Make things be more portable by providing a default C routine to locate the got. -Erik | |||
2001-06-13 | Use sys/mman.h not asm/mman.h -- we don't want kernel headers... | Eric Andersen | |
-Erik | |||
2001-06-11 | Get rid of the unused LDSO_VERSION | Eric Andersen | |
2001-06-11 | Fix bug in ldso/util/Makefile introduced when Erik added the readelf app. | Manuel Novoa III | |
It didn't show up if a previous install was done. This would have been fixed two days ago if the initial bug report had been anything close to lucid. :-( Also changed ldconfig back to staticly linked and update the README file. | |||
2001-06-07 | Changes needed to build the ldso dir for m68k. I haven't tested it, | David McCullough | |
who knows if it will work, it just compiles cleanly :-) | |||
2001-06-07 | ldso build always used $(NATIVE_ARCH)-uClibc-gcc, which doesn't work for | David McCullough | |
cross build (ie., m68k under i386). Changed it to use $(TARGET_ARCH) instead. | |||
2001-06-04 | Add a new 'readelf' util I wrote this weekend. | Eric Andersen | |
-Erik | |||
2001-06-04 | Teach the ldso stuff to use the proper elf.h header file, not a local copy. | Eric Andersen | |
-Erik | |||
2001-06-02 | Always check before you commit...^100. We need to build the dynamic linker | Manuel Novoa III | |
before we build shared libc. We need to build shared libc before libdl. | |||
2001-06-02 | Only build ldso if building shared. Also, if building ldso, build all subdirs. | Manuel Novoa III | |
2001-05-31 | Removed INSTALL_DIR and replaced it with DEVEL_PREFIX, ROOT_DIR, and | Manuel Novoa III | |
TARGET_PREFIX to allow more flexibility. Also modified the gcc wrapper to do the right thing if -Wl,--dynamic-linker,xxx is passed on the command line. The gcc wrapper will also check the env variable UCLIBC_GCC_LDOPT for a dynamic linker option at runtime (although command line arg overrides the env variable). | |||
2001-05-25 | One last structural change. Install header files to INSTALLDIR/usr/include | Eric Andersen | |
so we now parallel the behavior of the standard tools. Also make sure we check INSTALLDIR/lib and INSTALLDIR/usr/lib for libraries. -Erik |