1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Add command line trace capture utility.

This commit is contained in:
Bartosz Taudul
2018-03-10 01:29:27 +01:00
parent a14ff62e64
commit c673f70f90
10 changed files with 754 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
ARCH := $(shell uname -m)
CFLAGS := -g3 -Wall
DEFINES := -DDEBUG
ifeq ($(ARCH),x86_64)
CFLAGS += -msse4.1
endif
include build.mk