summaryrefslogtreecommitdiffstats
path: root/ldso
Commit message (Collapse)AuthorAgeFilesLines
* Peter Kjellerstedt writes:Eric Andersen2003-10-184-8/+8
| | | | | | | | | | 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.
* Peter Kjellerstedt writes:Eric Andersen2003-10-185-11/+10
| | | | | | | 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).
* Peter Kjellerstedt writes:Eric Andersen2003-10-182-6/+6
| | | | | | | | | 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.
* Doh! I was returning with an incorrect pointer type when dlopeningEric Andersen2003-10-152-14/+14
| | | | | | already loaded libs, which unsurprisingly would cause dlsym() to not work at all... -Erik
* Enable full debug support for ld-uClibc and libdlEric Andersen2003-10-142-0/+18
|
* sigh. the warn funcs seem to be broken. Use local versionsEric Andersen2003-10-131-17/+71
| | | | till I can straighten that out.
* Fix an ldd bug, more ldconfig cleanupEric Andersen2003-10-132-264/+287
|
* Always build and install ldconfigEric Andersen2003-10-125-94/+85
|
* move the test for loading the wrong C library into theEric Andersen2003-10-092-32/+52
| | | | _dl_check_if_named_library_is_loaded function
* When someone would dlopen a shared lib that was already opened,Eric Andersen2003-10-092-24/+28
| | | | | | | | | we would try to re-fixup the lib's relocations with rather horrible results. So fix that by checking the the dlopened lib has already had its init functions called, which will never be the case for newly loaded libs, and skip the rest in that case. also apply a few minor fixups
* Fix a stupid bug causing 'ldd' output to not contain the fullEric Andersen2003-10-041-2/+1
| | | | path to the target library
* Don't forget addend on relocations + minor other fixes.Tobias Anderberg2003-09-301-3/+11
|
* Fix SUPPORT_LD_DEBUG_EARLY on powerpcEric Andersen2003-09-292-2/+2
|
* * Partial re-write to match other archs and remove duplicate code.Tobias Anderberg2003-09-191-229/+226
| | | | * Assign insead of add when doing relocations.
* Corrected LD_BOOT macroTobias Anderberg2003-09-192-2/+2
|
* Initialize strings as pointers instead of arrays.Tobias Anderberg2003-09-192-4/+4
|
* Re-add cris to "define list" when fixing auxvt.Tobias Anderberg2003-09-191-1/+1
|
* Make sure we use the local copy of elf.h, since some systemEric Andersen2003-09-171-6/+9
| | | | versions are insufficient....
* Simplify an expression. Use static const on strings to avoidEric Andersen2003-09-112-12/+10
| | | | a gcc 2.95 compiler problem on powerpc.
* Stefan Allius writes:Eric Andersen2003-09-111-36/+45
| | | | | | | | | Hello, my patch changed the format of the ldso debug output to the same format as on the i386 systems. By Stefan
* Fix cris shared lib loader so it compiles...Eric Andersen2003-09-091-2/+4
|
* Arm needs this to compile with gcc 2.95Eric Andersen2003-09-092-0/+24
|
* cleanup/simplify duplicate handling.Eric Andersen2003-09-022-26/+92
|
* delete some garbage, cleanup duplicate handlingEric Andersen2003-09-021-67/+34
|
* Fix a problem with dtors/dtors.Eric Andersen2003-09-022-70/+92
|
* Weed out duplicates before trying to load libraries.... DelayedEric Andersen2003-08-315-30/+102
| | | | | checking for duplicates and returning an alias if an existing lib is already loaded is still correct for the dlopen case.
* Removed CRIS specific code.Tobias Anderberg2003-08-271-4/+0
|
* Cosmetic changes.Tobias Anderberg2003-08-275-169/+181
|
* Make the mips ld.so debug noise somewhat useful, and less gratuitouslyEric Andersen2003-08-221-35/+129
| | | | | different than all other arches. -Erik
* Remove some mips specific hacks that are no longer needed, and actively breakEric Andersen2003-08-221-31/+13
| | | | | | things, now that I have cleaned up the code to be a bit less horribly messy. With this, the shared lib loader works on mips once again. -Erik
* Be sure to remove the old ldso.h, since it will screw thingsEric Andersen2003-08-211-1/+1
| | | | up badly if still present...
* I just realized we need global symbol resolution for everything inEric Andersen2003-08-192-122/+10
| | | | | | | | | | | a chain of dependent libraries or libraries that depend on other shared libraries will not work! So with a well placed dyn_chain->flags |= RTLD_GLOBAL; everything is now working perfectly!!! Sweet!!!! This patch also removes some leftover junk from my previous efforts.
* More routine cleanupEric Andersen2003-08-191-12/+13
|
* Cool. Found most of the problem. Turns out we were inadvertanly loading someEric Andersen2003-08-1910-281/+501
| | | | | | | libraries multiple times, wasting memory and causing different libraries to use different symbol sets, some of which were not properly resolved. Continue scrubbing ld.so and converting it to use proper types.
* Phase one of my evil plan to clean up ld.so...Eric Andersen2003-08-1925-437/+928
|
* Only exec child apps if they are elf type ET_EXECEric Andersen2003-07-021-2/+3
|
* oopsEric Andersen2003-06-271-1/+1
|
* Run dlopened ctors and dtors in the correct orderEric Andersen2003-06-272-8/+16
|
* whitespace and debug updatesEric Andersen2003-06-271-42/+46
|
* Be extra careful to memset the correct size, not the size of some randomEric Andersen2003-06-185-43/+37
| | | | | | | pointer. Fix printing of '0x0x' in ldd output. Simplify discrimination of libname, so doing things like dlopen("./libfoo.so",RTLD_NOW) with a leading "./" in the path will work as expected. -Erik
* Fix a segfault when used on a library w/o an INTERP program header.Eric Andersen2003-06-161-3/+3
|
* Don't segfault when given things other than a regular file.Eric Andersen2003-06-151-0/+3
| | | | -Erik
* Implement syscall() for powerpc. Fixup syscall code soEric Andersen2003-06-152-16/+18
| | | | | it compiles properly with gcc 3.3. -Erik
* Fix mips so it compiles with gcc 3.3Eric Andersen2003-06-122-60/+60
|
* remove a leftover debug printfEric Andersen2003-03-071-2/+0
|
* Patch from Stefan AlliusEric Andersen2003-03-073-23/+24
| | | | | | | | | | | the ldd.c wasn't compilable for SuperH due to a missing ELFCLASSM define and the readelf executable was linked with a wrong dynamic linker path. To fix this I removed the --uclibc-use-build-dir. The patch also fixed all the compiler warnings (-Wall -W). Erik made a few additional changes to eliminate unused function arguments and fixup a static variable that was was doing the wrong thing
* Fixup ldd handling of multiple filesEric Andersen2003-03-061-12/+36
|
* Patch from Stefan Allius to make ldd.c compile under SolarisEric Andersen2003-03-041-0/+6
|
* Teach ldd to be a bit more helpful by telling you specificallyEric Andersen2003-03-041-5/+29
| | | | | what the problem library is that is linked vs glibc. -Erik
* Teach ldd to act just the glibc provided one (relying on theEric Andersen2003-03-013-37/+106
| | | | | | | shared lib loader to do the work) when it is possible to do so, and only go poking about through the ELF headers when that fails so we can still use 'ldd' on cross compiled stuff. -Erik