Use -Wl,-x instead of -s: it is more portable, and in particular,

is needed on BSD (MacOS).
Also, use -Ldir instead of -L dir on the link line.  Same reason...


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5068 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vikram S. Adve 2002-12-16 01:31:18 +00:00
parent b167c04e62
commit ec4d36276f
2 changed files with 8 additions and 8 deletions

View File

@ -144,7 +144,7 @@ ifdef KEEP_SYMBOLS
STRIP =
WARN_MSG =
else
STRIP = -s
STRIP = -Wl,-x
WARN_MSG = "(without symbols) "
endif
@ -174,9 +174,9 @@ Link := $(PURIFY) $(CXX) -static
else
Link := $(CXX)
endif
LinkG := $(Link) -g -L $(LIBDEBUG) $(STRIP)
LinkO := $(Link) -O3 -L $(LIBRELEASE)
LinkP := $(Link) -O3 -L $(LIBPROFILE) $(PROFILE)
LinkG := $(Link) -g -L$(LIBDEBUG) $(STRIP)
LinkO := $(Link) -O3 -L$(LIBRELEASE)
LinkP := $(Link) -O3 -L$(LIBPROFILE) $(PROFILE)
# Create one .o file from a bunch of .o files...
Relink = ld -r

View File

@ -144,7 +144,7 @@ ifdef KEEP_SYMBOLS
STRIP =
WARN_MSG =
else
STRIP = -s
STRIP = -Wl,-x
WARN_MSG = "(without symbols) "
endif
@ -174,9 +174,9 @@ Link := $(PURIFY) $(CXX) -static
else
Link := $(CXX)
endif
LinkG := $(Link) -g -L $(LIBDEBUG) $(STRIP)
LinkO := $(Link) -O3 -L $(LIBRELEASE)
LinkP := $(Link) -O3 -L $(LIBPROFILE) $(PROFILE)
LinkG := $(Link) -g -L$(LIBDEBUG) $(STRIP)
LinkO := $(Link) -O3 -L$(LIBRELEASE)
LinkP := $(Link) -O3 -L$(LIBPROFILE) $(PROFILE)
# Create one .o file from a bunch of .o files...
Relink = ld -r