[Lldb-commits] [lldb] 8abfa51 - [lldb/test] Fix TestCppIncompleteTypeMembers.py

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Mon May 9 08:12:16 PDT 2022


Author: Pavel Labath
Date: 2022-05-09T17:11:57+02:00
New Revision: 8abfa5119addc97e881025a819b8d643d53dda14

URL: https://github.com/llvm/llvm-project/commit/8abfa5119addc97e881025a819b8d643d53dda14
DIFF: https://github.com/llvm/llvm-project/commit/8abfa5119addc97e881025a819b8d643d53dda14.diff

LOG: [lldb/test] Fix TestCppIncompleteTypeMembers.py

modify the Makefile.rules line which was interfering with the
target-specific variable values.

Added: 
    

Modified: 
    lldb/packages/Python/lldbsuite/test/make/Makefile.rules

Removed: 
    


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/make/Makefile.rules b/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
index f4aa6d646711f..3f9c2abecddbc 100644
--- a/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
+++ b/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
@@ -367,7 +367,7 @@ ifeq "$(OS)" "Windows_NT"
 		# MSVC 2015 or higher is required, which depends on c++14, so
 		# append these values unconditionally.
 		CXXFLAGS += -fms-compatibility-version=19.0
-		override CXXFLAGS := $(subst -std=c++11,-std=c++14,$(CXXFLAGS))
+		CXXFLAGS += -std=c++14
 
 		# The MSVC linker doesn't understand long section names
 		# generated by the clang compiler.


        


More information about the lldb-commits mailing list