gdb.py 358 B

1234567891011121314151617
  1. from SCons.Builder import Builder
  2. from SCons.Action import Action
  3. def generate(env):
  4. env.SetDefault(
  5. GDB="gdb",
  6. GDBPY="gdb-py",
  7. GDBOPTS="",
  8. GDBPYOPTS="",
  9. GDBCOM="$GDB $GDBOPTS $SOURCES", # no $TARGET
  10. GDBPYCOM="$GDBPY $GDBOPTS $GDBPYOPTS $SOURCES", # no $TARGET
  11. )
  12. def exists(env):
  13. return True