diff --git a/Makefile.system b/Makefile.system index ccde8e9ce..385ad47c3 100644 --- a/Makefile.system +++ b/Makefile.system @@ -339,7 +339,7 @@ FCOMMON_OPT += -m128bit-long-double endif ifeq ($(C_COMPILER), CLANG) EXPRECISION = 1 -CCOMMON_OPT += -DEXPRECISION +CCOMMON_OPT += -DEXPRECISION FCOMMON_OPT += -m128bit-long-double endif endif @@ -350,6 +350,12 @@ ifeq ($(C_COMPILER), INTEL) CCOMMON_OPT += -wd981 endif +ifeq ($(ARCH), x86_64) +ifeq ($(C_COMPILER), CLANG) +CCOMMON_OPT += -no-integrated-as +endif +endif + ifeq ($(USE_OPENMP), 1) # ifeq logical or. GCC or LSB ifeq ($(C_COMPILER), $(filter $(C_COMPILER),GCC LSB))