[Lldb-commits] [lldb] e653dc9 - [lldb] Fix TestFrameLanguageCommands.py build (#141829)

via lldb-commits lldb-commits at lists.llvm.org
Wed May 28 12:25:52 PDT 2025


Author: Dave Lee
Date: 2025-05-28T12:25:49-07:00
New Revision: e653dc9ca00819dc7767dbde4422e96ddc296d03

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

LOG: [lldb] Fix TestFrameLanguageCommands.py build (#141829)

The use of `-lobjc` resulted in this test failing to build on Linux. The
flag is not necessary, this removes the flag with the expectation it
will fix the test on Linux.

Added: 
    

Modified: 
    lldb/test/API/commands/command/language/Makefile

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/command/language/Makefile b/lldb/test/API/commands/command/language/Makefile
index 2d5049417ee70..ce845d59ac035 100644
--- a/lldb/test/API/commands/command/language/Makefile
+++ b/lldb/test/API/commands/command/language/Makefile
@@ -1,4 +1,3 @@
 OBJCXX_SOURCES := main.mm
 CXX_SOURCES := lib.cpp
-LD_EXTRAS := -lobjc
 include Makefile.rules


        


More information about the lldb-commits mailing list