[Lldb-commits] [PATCH] D146058: [lldb][gnustep] Add basic test and infrastructure for GNUstep ObjC runtime
Stefan Gränitz via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 14 09:07:10 PDT 2023
sgraenitz added a comment.
I am not in touch with any of the build bot maintainers for Windows/Linux LLDB. Do you think it's worth asking for mainline test support? They'd basically need to build and install libobjc2 once. It's a few hundred kilobytes.
For me the test expectedly fails on Windows 10 and passes on Ubuntu 22.04 LTS right now:
> bin/llvm-lit --filter=objc-gnustep -v tools/lldb/test
-- Testing: 1 of 1979 tests, 1 workers --
PASS: lldb-shell :: Expr/objc-gnustep-print.m (1 of 1)
Testing Time: 1.26s
Excluded: 1583
Passed : 1
================
Comment at: lldb/test/CMakeLists.txt:39
+if (LLDB_TEST_OBJC_GNUSTEP_DIR)
+ message(STATUS "Found GNUstep ObjC runtime: ${LLDB_TEST_OBJC_GNUSTEP_DIR}/${gnustep_info}")
+endif()
----------------
Might be worth a `FindGNUstep.cmake` at some point? (Or is there one somewhere?)
Windows default install dir:
```
-- Found GNUstep ObjC runtime: C:/Program Files (x86)/libobjc/lib/objc.dll
```
Linux default install dir:
```
-- Found GNUstep ObjC runtime: /usr/local/lib/libobjc.so
```
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D146058/new/
https://reviews.llvm.org/D146058
More information about the lldb-commits
mailing list