From 669e903fa6c3707e6bd65dcb0a5c8e07861219e2 Mon Sep 17 00:00:00 2001 From: cinnaboot Date: Thu, 1 Jan 2026 10:44:55 -0500 Subject: [PATCH] re-order linker flags in example Makefile fixes a bug when compiling on debian --- examples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Makefile b/examples/Makefile index b54c414..aeb9395 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -34,7 +34,7 @@ BINDIR = bin #.PHONY: clean all: mkdirs - $(CXX) $(CXXFLAGS) main.cpp -o $(BINDIR)/testing $(LDFLAGS) $(LIB) + $(CXX) $(CXXFLAGS) main.cpp -o $(BINDIR)/testing $(LIB) $(LDFLAGS) mkdirs: @mkdir -p $(BINDIR) $(OBJDIR)