diff options
author | Bob Wilson <bob.wilson@apple.com> | 2013-06-04 15:26:37 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2013-06-04 15:26:37 +0000 |
commit | 8240ef04108620fef51219e9495a6e71e95ccd75 (patch) | |
tree | 7b9afcd3ac25299a772b5d4ff1cb83ebdcff419d /runtime/libprofile/Makefile | |
parent | 98017a015bb862afce4f90d432eded4e28fe1d26 (diff) | |
download | external_llvm-8240ef04108620fef51219e9495a6e71e95ccd75.zip external_llvm-8240ef04108620fef51219e9495a6e71e95ccd75.tar.gz external_llvm-8240ef04108620fef51219e9495a6e71e95ccd75.tar.bz2 |
Remove "-Wl,-seg1addr -Wl,0xE0000000" from link options.
Specifying the load address for Darwin i386 dylibs was a performance
optimization for dyld that is not relevant for x86_64 or arm. We can just
remove this now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183230 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/libprofile/Makefile')
-rw-r--r-- | runtime/libprofile/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/libprofile/Makefile b/runtime/libprofile/Makefile index 6c3701b..b82e995 100644 --- a/runtime/libprofile/Makefile +++ b/runtime/libprofile/Makefile @@ -35,8 +35,7 @@ ifeq ($(HOST_OS),Darwin) endif # Extra options to override libtool defaults. LLVMLibsOptions := $(LLVMLibsOptions) \ - -Wl,-dead_strip \ - -Wl,-seg1addr -Wl,0xE0000000 + -Wl,-dead_strip # Mac OS X 10.4 and earlier tools do not allow a second -install_name on # command line. |