Skip to content

Commit fe2a922

Browse files
authored
Add POWER10 compiler options to CCOMMON_OPT rather than COMMON_OPT
1 parent a61c086 commit fe2a922

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.power

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ USE_OPENMP = 1
1010
endif
1111

1212
ifeq ($(CORE), POWER10)
13-
override COMMON_OPT += -Ofast -mcpu=power10 -mtune=power10 -mvsx -fno-fast-math
14-
override FCOMMON_OPT += -O2 -frecursive -mcpu=power10 -mtune=power10 -fno-fast-math
13+
CCOMMON_OPT += -Ofast -mcpu=power10 -mtune=power10 -mvsx -fno-fast-math
14+
FCOMMON_OPT += -O2 -frecursive -mcpu=power10 -mtune=power10 -fno-fast-math
1515
endif
1616

1717
ifeq ($(CORE), POWER9)

0 commit comments

Comments
 (0)