-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[PATCH] implement USE_CPLUSPLUS build option in win32/GNUmakefile #16534
Comments
From @bulk88Created by @bulk88See attached patch. This doesn't have to be in 5.28. It is an Perl Info
|
From @bulk880001-implement-USE_CPLUSPLUS-build-option-in-win32-GNUmak.patchFrom 681a04a1912dad3b662f59608839645853758040 Mon Sep 17 00:00:00 2001
From: Daniel Dragan <bulk88@hotmail.com>
Date: Tue, 24 Apr 2018 20:34:21 -0400
Subject: [PATCH] implement USE_CPLUSPLUS build option in win32/GNUmakefile
win32/makefile.mk has had a C++ build option for a long time, but
GNUmakefile didn't. Over time, GNUmakefile and makefile.mk got more and
more syncronized in their features. There is very little left to implement
USE_CPLUSPLUS in GNUmakefile, so just implement it finally. This allows
the gmake/gcc 3.4.5 bundled with strawberry perl 5.8.9 to be used to build
USE_CPLUSPLUS mode perl since the dmake bundled with 5.8.9 whose version is
"Version 4.8-20070327-SHAY (Windows / MS Visual C++)"
has a bug generating cmd lines passed to cmd.exe which causes EUMM
makefiles to fail with
'..\..\miniperl.exe" "-I..\..\lib' is not recognized as an internal or
external command, operable program or batch file.
but newer dmakes such as "Version 4.12 (Windows / MinGW)" dont have this
bug. Researching the bug/regression with EUMM and ancient dmakes is left
for the future.
---
win32/GNUmakefile | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/win32/GNUmakefile b/win32/GNUmakefile
index 0f67868..a81face 100644
--- a/win32/GNUmakefile
+++ b/win32/GNUmakefile
@@ -190,6 +190,11 @@ DEFAULT_INC_EXCLUDES_DOT := define
#__ICC := define
#
+# Uncomment this if you want to build everything in C++ mode
+#
+#USE_CPLUSPLUS := define
+
+#
# uncomment next line if you want debug version of perl (big/slow)
# If not enabled, we automatically try to use maximum optimization
# with all compilers that are known to have a working optimizer.
@@ -587,6 +592,9 @@ LINK_DBG = -s
endif
EXTRACFLAGS =
+ifeq ($(USE_CPLUSPLUS),define)
+EXTRACFLAGS += $(CXX_FLAG)
+endif
CFLAGS = $(EXTRACFLAGS) $(INCLUDES) $(DEFINES) $(LOCDEFS) $(OPTIMIZE)
LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)"
OBJOUT_FLAG = -o
--
2.5.0.windows.1
|
From @steve-m-hayOn Thu, 26 Apr 2018 02:04:54 -0700, bulk88 wrote:
Thanks, now applied in commit cc1cf06 (with a minor follow-up in commit f9e90a1). |
The RT System itself - Status changed from 'new' to 'open' |
@steve-m-hay - Status changed from 'open' to 'pending release' |
From @khwilliamsonThank you for filing this report. You have helped make Perl better. With the release today of Perl 5.30.0, this and 160 other issues have been Perl 5.30.0 may be downloaded via: If you find that the problem persists, feel free to reopen this ticket. |
@khwilliamson - Status changed from 'pending release' to 'resolved' |
Migrated from rt.perl.org#133154 (status was 'resolved')
Searchable as RT133154$
The text was updated successfully, but these errors were encountered: