14 lines
521 B
Plaintext
14 lines
521 B
Plaintext
#------------------------------------------------------------------------------
|
|
# Linking on MacOS
|
|
# with or without rpath components
|
|
# - current default is with rpath unless explicitly disabled
|
|
#------------------------------------------------------------------------------
|
|
|
|
ifneq (,$(findstring ~rpath,$(WM_COMPILE_CONTROL)))
|
|
include $(ARCHITECTURE_RULES)/link-no-rpath-c++
|
|
else
|
|
include $(ARCHITECTURE_RULES)/link-rpath-c++
|
|
endif
|
|
|
|
#------------------------------------------------------------------------------
|