Skip to content

Commit e49a373

Browse files
committed
Change Makefile to (hopefully) load the objc runtime
1 parent 57173b1 commit e49a373

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
OBJCXX_SOURCES := main.mm
2+
CFLAGS_EXTRAS := -fobjc-arc
23
CXX_SOURCES := lib.cpp
4+
LD_EXTRAS := -lobjc
35
include Makefile.rules

lldb/test/API/commands/command/language/TestFrameLanguageCommands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def test(self):
2525
)
2626

2727
# Run a `language cplusplus` command.
28-
self.expect(f"demangle _Z1fv", startstr="_Z1fv ---> f()")
28+
self.expect("demangle _Z1fv", startstr="_Z1fv ---> f()")
2929
# Test prefix matching.
3030
self.expect("dem _Z1fv", startstr="_Z1fv ---> f()")
3131

0 commit comments

Comments
 (0)