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

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf.pld@gmail.com>2020-04-01 22:43:03 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2020-04-01 22:43:03 +0300
commitb2a8b53efa19fef63ef623bcdf8c251b7aeed08a (patch)
tree5f213c540ff8c1182cdfa66f07994dd8d4306964 /capture/build
parent0ba0125eb5e634ad90360c6487caae189eb61fb5 (diff)
Query source location of each assembly instruction.
Diffstat (limited to 'capture/build')
-rw-r--r--capture/build/unix/build.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/capture/build/unix/build.mk b/capture/build/unix/build.mk
index dec1c711..5378e008 100644
--- a/capture/build/unix/build.mk
+++ b/capture/build/unix/build.mk
@@ -1,8 +1,8 @@
CFLAGS +=
CXXFLAGS := $(CFLAGS) -std=gnu++17
DEFINES += -DTRACY_NO_STATISTICS
-INCLUDES :=
-LIBS := -lpthread
+INCLUDES := $(shell pkg-config --cflags capstone)
+LIBS := $(shell pkg-config --libs capstone) -lpthread
PROJECT := capture
IMAGE := $(PROJECT)-$(BUILD)