Files
openfoam/wmake/rules/darwin64Clang/general
Mark Olesen 92238ec4b6 COMP: manage cpu architecture with cARCH, c++ARCH internal make variables
- allows better separation from compiler settings

- use -fPIC instead of legacy -KPIC for intel compiler
2019-04-12 12:59:11 +02:00

18 lines
413 B
Plaintext

CPP = cpp -traditional-cpp $(GFLAGS) -Ddarwin
PROJECT_LIBS = -l$(WM_PROJECT) -ldl
include $(GENERAL_RULES)/standard
include $(GENERAL_RULES)/Clang/openmp
include $(DEFAULT_RULES)/c
include $(DEFAULT_RULES)/c++
# Shared library extension (with '.' separator)
EXT_SO = .dylib
# Define general os-type
GFLAGS += -Ddarwin
# -----------------------------------------------------------------------------