If your core file is core
just run
gdb ./my_prog core
to do some post-mortem analysis with the core
.
If you want to use gdb
without your core, consider
gdb --args ./my_prog arg
or else run just gdb ./my_prog
then issue the set args
command to gdb
.
If your process is still running as pid 1234, you could with gdb ./my_prog 1234
attach the gdb to the running process.
You really should read the gdb documentation.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…