Files
openfoam/wmake/rules/darwin64/link-c++
2025-10-06 15:01:59 +02:00

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
#------------------------------------------------------------------------------