summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorBiswapriyo Nath <nathbappai@gmail.com>2021-07-21 11:37:08 +0530
committerxenu <me@xenu.pl>2021-07-29 04:09:14 +0200
commit7631dcc7c663825c8b734603e5533daf75631106 (patch)
tree6c21323b2b63d853b0dec93c1f3677a41958ba6a /win32
parent87a09ccde40c9dfb85d2fa70fa830527275f44b1 (diff)
downloadperl-7631dcc7c663825c8b734603e5533daf75631106.tar.gz
win32/GNUmakefile: Remove -s option from compiler flags
Binary stripping is done at linking time
Diffstat (limited to 'win32')
-rw-r--r--win32/GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/GNUmakefile b/win32/GNUmakefile
index 79976dc89b..4ed19bdfa7 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