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>2019-11-21 22:41:38 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-11-21 22:41:57 +0300
commit0a6fd9ef5f1758dfa42ab094e898c55305a2bb97 (patch)
tree892ea7af70b6dab4bb32bc51564e5b45bc2b677d /test/Makefile
parent3e4913dc8a8fb77c494e0eee8311973da63fa7f5 (diff)
Link with execinfo on FreeBSD.
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
index 0beca501..3fb6279b 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -16,6 +16,9 @@ OBJ := $(SRC:%.cpp=%.o)
ifeq ($(shell uname -o),Cygwin)
LIBS += -ldbghelp
endif
+ifeq ($(shell uname -o),FreeBSD)
+LIBS += -lexecinfo
+endif
all: $(IMAGE)