Target native architecture.

This commit is contained in:
Bartosz Taudul 2020-05-13 18:35:56 +02:00
parent 21c168156c
commit 884de148c9
4 changed files with 4 additions and 20 deletions

View File

@ -1,11 +1,7 @@
ARCH := $(shell uname -m)
CFLAGS := -O3 -s
CFLAGS := -O3 -s -march=native
DEFINES := -DNDEBUG
BUILD := release
ifeq ($(ARCH),x86_64)
CFLAGS += -msse4.1
endif
include build.mk

View File

@ -1,11 +1,7 @@
ARCH := $(shell uname -m)
CFLAGS := -O3 -s
CFLAGS := -O3 -s -march=native
DEFINES := -DNDEBUG
BUILD := release
ifeq ($(ARCH),x86_64)
CFLAGS += -msse4.1
endif
include build.mk

View File

@ -1,11 +1,7 @@
ARCH := $(shell uname -m)
CFLAGS := -O3 -s
CFLAGS := -O3 -s -march=native
DEFINES := -DNDEBUG
BUILD := release
ifeq ($(ARCH),x86_64)
CFLAGS += -msse4.1
endif
include build.mk

View File

@ -1,11 +1,7 @@
ARCH := $(shell uname -m)
CFLAGS := -O3 -s
CFLAGS := -O3 -s -march=native
DEFINES := -DNDEBUG
BUILD := release
ifeq ($(ARCH),x86_64)
CFLAGS += -msse4.1
endif
include build.mk