mirror of
https://github.com/wolfpld/tracy.git
synced 2024-12-02 09:44:35 +00:00
f4f75eac64
- Add a tool "tracy-edit" that allows loading a tracy capture, patching symbols and recompress the result - Add offline symbol resolvers for linux (using addr2line) and windows (using dbghelper)
14 lines
326 B
Makefile
14 lines
326 B
Makefile
CFLAGS +=
|
|
CXXFLAGS := $(CFLAGS) -std=gnu++17
|
|
DEFINES += -DTRACY_NO_STATISTICS
|
|
INCLUDES := -I../../../capstone/include/capstone
|
|
LIBS += -lcapstone -lpthread
|
|
LDFLAGS := -L../../../capstone
|
|
PROJECT := tracy-edit
|
|
IMAGE := $(PROJECT)-$(BUILD)
|
|
|
|
FILTER :=
|
|
include ../../../common/src-from-vcxproj.mk
|
|
|
|
include ../../../common/unix.mk
|