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:
authorStone Tickle <lattis@mochiro.moe>2021-03-17 00:43:52 +0300
committerStone Tickle <lattis@mochiro.moe>2021-03-17 00:43:52 +0300
commit97313a295bdd3340b5720706dc3efd4529679c14 (patch)
tree8c3e32f8f12f3314d59ad0eaaacc7d84b175b323
parent0f6c76616715e2917f67e2c976431e049a7db7f1 (diff)
remove explicit linking for dlopened OpenGL
-rw-r--r--profiler/build/unix/build.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/profiler/build/unix/build.mk b/profiler/build/unix/build.mk
index dd392bab..7d14795d 100644
--- a/profiler/build/unix/build.mk
+++ b/profiler/build/unix/build.mk
@@ -26,7 +26,7 @@ ifeq ($(UNAME),Darwin)
else
SRC2 += ../../../nfd/nfd_gtk.c
INCLUDES += $(shell pkg-config --cflags gtk+-3.0)
- LIBS += $(shell pkg-config --libs gtk+-3.0) -lGL
+ LIBS += $(shell pkg-config --libs gtk+-3.0)
endif
include ../../../common/unix.mk