Merge pull request #1220 from ashwinyes/develop_aarch64_20170701_t99_options

arm64: Change mtune/mcpu options for THUNDERX2T99 target
This commit is contained in:
Martin Kroeker 2017-07-01 20:43:23 +02:00 committed by GitHub
commit e5e47cfdb5
1 changed files with 2 additions and 2 deletions

View File

@ -20,6 +20,6 @@ FCOMMON_OPT += -mtune=thunderx -mcpu=thunderx
endif
ifeq ($(CORE), THUNDERX2T99)
CCOMMON_OPT += -mtune=vulcan -mcpu=vulcan
FCOMMON_OPT += -mtune=vulcan -mcpu=vulcan
CCOMMON_OPT += -mtune=thunderx2t99 -mcpu=thunderx2t99
FCOMMON_OPT += -mtune=thunderx2t99 -mcpu=thunderx2t99
endif