From 21ae2e126c8282132a3e715d3c1e97bdc4b22d4b Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath Date: Fri, 11 Jun 2021 19:21:17 +0530 Subject: [PATCH] win32/GNUmakefile: Remove -s option from compiler flags Binary stripping is done at linking time --- win32/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/GNUmakefile b/win32/GNUmakefile index 40a000ebc996..aa2d5cafe972 100644 --- a/win32/GNUmakefile +++ b/win32/GNUmakefile @@ -627,7 +627,7 @@ OPTIMIZE = -g -O2 LINK_DBG = -g DEFINES += -DDEBUGGING else -OPTIMIZE = -s -O2 +OPTIMIZE = -O2 LINK_DBG = -s endif