forked from openkylin/platform_build
Allow LOCAL_LDFLAGS to override HOST_GLOBAL_LDFLAGS.
For host executables and shared libraries, the global LDFLAGS were being inserted into the linker command line after the module-specific ones, making it impossible to override the default settings. Change the order to match target linker invocations. Change-Id: Icd5f6f83df9f27a5be97ddb197ee245c1ab8c2be
This commit is contained in:
parent
0e0c48796d
commit
db7dcc210a
|
@ -1240,11 +1240,11 @@ $(hide) $(PRIVATE_CXX) \
|
|||
-Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
|
||||
-Wl,-rpath,\$$ORIGIN/../lib \
|
||||
-shared -Wl,-soname,$(notdir $@) \
|
||||
$(PRIVATE_LDFLAGS) \
|
||||
$(HOST_GLOBAL_LD_DIRS) \
|
||||
$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
|
||||
$(PRIVATE_HOST_GLOBAL_LDFLAGS) \
|
||||
) \
|
||||
$(PRIVATE_LDFLAGS) \
|
||||
$(PRIVATE_ALL_OBJECTS) \
|
||||
-Wl,--whole-archive \
|
||||
$(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
|
||||
|
@ -1395,11 +1395,11 @@ $(hide) $(PRIVATE_CXX) \
|
|||
-Wl,-rpath-link=$(HOST_OUT_INTERMEDIATE_LIBRARIES) \
|
||||
-Wl,-rpath,\$$ORIGIN/../lib \
|
||||
$(HOST_GLOBAL_LD_DIRS) \
|
||||
$(PRIVATE_LDFLAGS) \
|
||||
$(if $(PRIVATE_NO_DEFAULT_COMPILER_FLAGS),, \
|
||||
$(PRIVATE_HOST_GLOBAL_LDFLAGS) \
|
||||
-fPIE -pie \
|
||||
) \
|
||||
$(PRIVATE_LDFLAGS) \
|
||||
-o $@ \
|
||||
$(PRIVATE_LDLIBS)
|
||||
endef
|
||||
|
|
Loading…
Reference in New Issue