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.
```
6 lines
85 B
Makefile
6 lines
85 B
Makefile
C_SOURCES := main.c
|
|
DYLIB_NAME := fn
|
|
DYLIB_C_SOURCES := fn.c
|
|
|
|
include Makefile.rules
|