mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
14 lines
313 B
Makefile
14 lines
313 B
Makefile
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
|
|
ifeq ($(ARCH),x86_64)
|
|
CFLAGS += -msse4.1
|
|
endif
|
|
endif
|