How to generate Debug symbols with Makefile for C? [Linux]

前端 未结 3 747
有刺的猬
有刺的猬 2021-02-08 09:24

I\'m trying to use GDB and KDEvelop to debug a console app under Knoppix VM. KDevelop and GDB don\'t break at my breakpoints. I suspect it\'s because they don\'t have debug symb

相关标签:
3条回答
  • 2021-02-08 09:35

    The full example would be:

    CFLAGS =-g
    
    all: program.o
        gcc -o program program.o
    

    The CFLAGS here is applied to both the compiler and the linker.

    0 讨论(0)
  • 2021-02-08 09:43

    Include -g in the flags sent to the compiler and linker. The default variables for this are CFLAGS and LDFLAGS respectively.

    The second step: exclude -s from flags (-s means strip)

    0 讨论(0)
  • 2021-02-08 09:51

    If you are able to see source and set the breakpoint, then you probably have debugging symbols established. However, the usual sequence is:

    gcc -g -o (outputname) (source files...)
    gdb outputname
    

    Give more specifics about what you are doing and what messages you see and we can be more specific.

    0 讨论(0)
提交回复
热议问题