Welcome to mirror list, hosted at ThFree Co, Russian Federation.

unix-debug.mk « common - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9838061fb006282c1fe03637a860b68b827a3870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
ARCH := $(shell uname -m)

ifeq (1,$(shell $(CC) --version | grep clang > /dev/null && echo 1 || echo 0))
  ifeq (1,$(shell ld.mold --version > /dev/null 2> /dev/null && echo 1 || echo 0))
LDFLAGS := -fuse-ld=mold
  endif
endif

ifndef TRACY_NO_ISA_EXTENSIONS
ifneq (,$(filter $(ARCH),aarch64 arm64))
CFLAGS += -mcpu=native
else
CFLAGS += -march=native
endif
endif