The following is what my program operates like.
exe -p param1 -i param2 -o param3
It crashed and generated a core dump file, core.pid.
What I want to do is analyze the core dump file by doing this.
gdb ./exe -p param1 -i param2 -o param3 core.pid
But the GDB recognizes parameters of the EXE file as GDB's input.
How can I analyze a core dump file in this situation?