From 8e87a3f1027802d12cab63e790c0bb5e2589bf28 Mon Sep 17 00:00:00 2001 From: CPunch Date: Tue, 18 Aug 2020 20:35:48 -0500 Subject: [PATCH] release makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e046f02..64075cf 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ CC = clang++ # using GNU C++ compiler WIN_CC = x86_64-w64-mingw32-g++ # using GNU C++ compiler # -w suppresses all warnings (the part that's commented out helps me find memory leaks, it ruins performance though!) -COMPILER_FLAGS = -std=c++17 -o3 -g3 -fsanitize=address +COMPILER_FLAGS = -std=c++17 -o3 -static #-g3 -fsanitize=address WIN_COMPILER_FLAGS = -std=c++17 -o3 -static #-g3 -fsanitize=address #LINKER_FLAGS specifies the libraries we're linking against (NONE, this is a single header library.)