mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-28 07:20:29 +00:00
12 lines
248 B
Python
12 lines
248 B
Python
|
def generate(env):
|
||
|
env.SetDefault(
|
||
|
GDB="gdb",
|
||
|
GDBPY="gdb-py",
|
||
|
GDBCOM="$GDB $GDBOPTS $SOURCES", # no $TARGET
|
||
|
GDBPYCOM="$GDBPY $GDBOPTS $GDBPYOPTS $SOURCES", # no $TARGET
|
||
|
)
|
||
|
|
||
|
|
||
|
def exists(env):
|
||
|
return True
|