mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
20 lines
407 B
Makefile
20 lines
407 B
Makefile
ARCH := $(shell uname -m)
|
|
|
|
ifeq (0,$(shell $(CC) --version | grep clang > /dev/null && echo 1 || echo 0))
|
|
CFLAGS += -s
|
|
else
|
|
ifeq (1,$(shell ld.mold --version > /dev/null 2> /dev/null && echo 1 || echo 0))
|
|
LDFLAGS := -s -fuse-ld=mold
|
|
else
|
|
LDFLAGS := -s
|
|
endif
|
|
endif
|
|
|
|
ifndef TRACY_NO_ISA_EXTENSIONS
|
|
ifneq (,$(filter $(ARCH),aarch64 arm64))
|
|
CFLAGS += -mcpu=native
|
|
else
|
|
CFLAGS += -march=native
|
|
endif
|
|
endif
|