From 32a13446439d068117340e3ae61f0bcefa3bca73 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Wed, 24 Apr 2024 09:58:35 -0400 Subject: [PATCH] Since I intend to move to C++... let's get that started right now. --- sc2/build/unix/build.config | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sc2/build/unix/build.config b/sc2/build/unix/build.config index 4b4ef3c51..840d33e30 100644 --- a/sc2/build/unix/build.config +++ b/sc2/build/unix/build.config @@ -460,7 +460,8 @@ uqm_process_config() { # Set C++ only flags # These allow use of C++ without the standard library - CXXFLAGS="$CXXFLAGS -fno-rtti -fno-exceptions -nostdinc++" + # ADAM: We're permitting ALL of C++! + #CXXFLAGS="$CXXFLAGS -fno-rtti -fno-exceptions -nostdinc++" # At this point, all the compiler flags must be set. CFLAGS="$CFLAGS $CCOMMONFLAGS"