gdb.py 316 B

123456789101112131415
  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. GDBCOM="$GDB $GDBOPTS $SOURCES", # no $TARGET
  8. GDBPYCOM="$GDBPY $GDBOPTS $GDBPYOPTS $SOURCES", # no $TARGET
  9. )
  10. def exists(env):
  11. return True