Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
250 views
in Technique[技术] by (71.8m points)

c - GDB With a coredump file in linux

I just got a core-dump file in linux with

ulimit -c unlimited

how can I attach gdb with it

I need to give command line arguments with it.

sample executation:

./my_prog arg

Help me to get into gdb

Cheers!!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...