1
mirror of https://github.com/flipperdevices/flipperzero-firmware.git synced 2025-12-12 12:51:22 +04:00
Files
flipperzero-firmware/scripts/fbt_tools/gdb.py

12 lines
248 B
Python
Raw Normal View History

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