From 3d9d242153bb09ec692fb94f9f527b5e402e8287 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 16 Aug 2022 14:12:22 +0200 Subject: [PATCH] Fix test application flags. --- test/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/Makefile b/test/Makefile index 9ad48e66..19b34384 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,6 +1,5 @@ OPTFLAGS := -g3 -fmerge-constants -TRACYFLAGS := -CFLAGS := $(OPTFLAGS) -Wall -DTRACY_ENABLE $(TRACYFLAGS) +CFLAGS := $(OPTFLAGS) -Wall -DTRACY_ENABLE CXXFLAGS := $(CFLAGS) -std=gnu++11 DEFINES += INCLUDES := -I../public/tracy @@ -19,7 +18,7 @@ LIBS += -lexecinfo endif ifeq ($(shell uname),Linux) -TRACYFLAGS += -DTRACY_DEBUGINFOD +DEFINES += -DTRACY_DEBUGINFOD LIBS += -ldebuginfod endif