COMP: Fedore13 has linkage with --no-add-needed as default. This disallows indirectly loaded libraries.

This commit is contained in:
mattijs
2010-08-31 16:27:15 +01:00
parent 1a6db8cdfa
commit f113dad6b9
26 changed files with 27 additions and 27 deletions

View File

@ -13,4 +13,4 @@ ctoo = $(WM_SCHEDULER) $(cc) $(cFLAGS) -c $$SOURCE -o $@
LINK_LIBS = $(cDBUG)
LINKLIBSO = $(cc) -shared
LINKEXE = $(cc) -Xlinker -z -Xlinker nodefs
LINKEXE = $(cc) -Xlinker --add-needed -Xlinker -z -Xlinker nodefs

View File

@ -18,4 +18,4 @@ cpptoo = $(Ctoo)
LINK_LIBS = $(c++DBUG)
LINKLIBSO = $(CC) $(c++FLAGS) -shared
LINKEXE = $(CC) $(c++FLAGS)
LINKEXE = $(CC) $(c++FLAGS) -Xlinker --add-needed