make : missing host optimizations in CXXFLAGS (#763)

This commit is contained in:
Ivan Stepanov 2023-04-05 17:38:37 +03:00 committed by GitHub
parent 594cc95fab
commit 0c44427df1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,6 +72,7 @@ endif
ifeq ($(UNAME_M),$(filter $(UNAME_M),x86_64 i686))
# Use all CPU extensions that are available:
CFLAGS += -march=native -mtune=native
CXXFLAGS += -march=native -mtune=native
endif
ifneq ($(filter ppc64%,$(UNAME_M)),)
POWER9_M := $(shell grep "POWER9" /proc/cpuinfo)