This regression snuck in at some point. It resulted in the program sometimes failing to load when the zip content was changed.
6 lines
160 B
Bash
Executable File
6 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
exec gdb -q -nh -i=mi $1 \
|
|
-ex "set confirm off" \
|
|
-ex "add-symbol-file $1.dbg 0x401000" \
|
|
-ex "run"
|