From 9ef8b28129f49b487f07262e659fbf7592ccc9f5 Mon Sep 17 00:00:00 2001 From: still-flow <46608177+still-flow@users.noreply.github.com> Date: Thu, 28 May 2020 15:13:45 +0300 Subject: [PATCH] fix order of options to g++ in Makefile.simple --- Makefile.simple | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.simple b/Makefile.simple index d8debc78..eb948b68 100644 --- a/Makefile.simple +++ b/Makefile.simple @@ -162,7 +162,7 @@ savepng$(OBJ_EXTENSION): savepng.cpp $(CXX) -O2 $(CXXFLAGS) -c savepng.cpp -o $@ mymake$(EXE_EXTENSION): mymake.cpp - $(CXX) -O2 $(CXXFLAGS) -lpthread mymake.cpp -o $@ + $(CXX) -O2 $(CXXFLAGS) mymake.cpp -lpthread -o $@ emscripten: hyper.html