tracy/common/unix-release.mk

20 lines
407 B
Makefile
Raw Normal View History

ARCH := $(shell uname -m)
2022-04-28 20:51:37 +00:00
ifeq (0,$(shell $(CC) --version | grep clang > /dev/null && echo 1 || echo 0))
2021-01-26 18:39:24 +00:00
CFLAGS += -s
else
ifeq (1,$(shell ld.mold --version > /dev/null 2> /dev/null && echo 1 || echo 0))
2022-04-27 16:20:36 +00:00
LDFLAGS := -s -fuse-ld=mold
else
LDFLAGS := -s
endif
2022-04-27 00:17:16 +00:00
endif
ifndef TRACY_NO_ISA_EXTENSIONS
2021-01-26 21:54:54 +00:00
ifneq (,$(filter $(ARCH),aarch64 arm64))
CFLAGS += -mcpu=native
else
CFLAGS += -march=native
endif
endif