mirror of
https://github.com/wolfpld/tracy.git
synced 2025-03-20 07:40:02 +08:00
- 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)
10 lines
151 B
Makefile
10 lines
151 B
Makefile
CFLAGS := -O3
|
|
ifndef TRACY_NO_LTO
|
|
CFLAGS += -flto
|
|
endif
|
|
DEFINES := -DNDEBUG
|
|
BUILD := release
|
|
|
|
include ../../../common/unix-release.mk
|
|
include build.mk
|