diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-10-13 14:50:43 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-10-13 14:50:43 +0000 |
commit | 51ce75b5b02a7617bfee5272d9236835be48d02d (patch) | |
tree | 45d559f5b9b02f0fa705797081a28f638f52463e /ldso/libdl | |
parent | 3936de030a9c53a21825701cea9c4d36e0d00b85 (diff) |
- use the compiler-driver instead of the linker
- adjust setting flags accordingly to use (hardcoded, see below) -Wl,
Potential improvements:
*) --warn-unresolved-symbols should perhaps be used for all libs
*) eventually rename LDFLAGS to CC_LDFLAGS
*) probe for compiler driver's notion of flag to use for passing in
linker flags (i.e. don't hardcode "-Wl,")
Diffstat (limited to 'ldso/libdl')
-rw-r--r-- | ldso/libdl/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/libdl/Makefile.in b/ldso/libdl/Makefile.in index f187f063a..baacf7654 100644 --- a/ldso/libdl/Makefile.in +++ b/ldso/libdl/Makefile.in @@ -17,7 +17,7 @@ endif CFLAGS-libdl.c := -DLDSO_ELFINTERP=\"$(TARGET_ARCH)/elfinterp.c\" -LDFLAGS-libdl.so := $(LDFLAGS) -fini dl_cleanup +LDFLAGS-libdl.so := $(LDFLAGS) -Wl,-fini,dl_cleanup LIBS-libdl.so := $(LIBS) $(ldso) |