Files
llvm-project/lldb/test/API/python_api/block/Makefile
John Harrison 5e5f7efd77 [lldb] Expose block equality with SBBlock. (#184222)
Adding the `operator==` and `operator!=` for SBBlock. This should allow
us to compare blocks within a frame, like:

```python
block = frame.GetBlock()
while True:
  if block == frame.GetFrameBlock():
    # we're at the top function scope.
  else:
    # we're at an inner block scope.
```
2026-03-03 16:19:58 -08:00

6 lines
85 B
Makefile

C_SOURCES := main.c
DYLIB_NAME := fn
DYLIB_C_SOURCES := fn.c
include Makefile.rules