Flymake configuration error while programming in C

后端 未结 2 1418
我在风中等你
我在风中等你 2021-02-08 06:17

When trying to run M-x Flymake-Mode in Emacs I get:

Flymake: Configuration error has occured while running (make -s -C ./CHK_SOURCES=helloworld_flymake.c SYNTAX_         


        
相关标签:
2条回答
  • 2021-02-08 06:55

    Makefile' must contain thecheck-syntax' target. Append this to the Makefile:

    check-syntax:
         gcc -o nul -S ${CHK_SOURCES}
    

    Make sure you use a TAB to start the second line. Also there is a bug with flymake that makes you have to name the Makefile with a capital M. It won't work if you, say, call it "makefile." Watch out for that!

    0 讨论(0)
  • 2021-02-08 07:02

    Is this the actual content of your makefile? It looks like there is a space ' ' before the second line. This is supposed to be a tab:

    helloworld: helloworld.c
     gcc helloworld.c -o helloworld
    

    More like this:

    helloworld: helloworld.c
        gcc helloworld.c -o helloworld
    

    Keeping in mind, that the SO editor seems to have converted my tab character to spaces, so don't do that.

    helloworld: helloworld.c
    <press tab here>gcc helloworld.c -o helloworld
    
    0 讨论(0)
提交回复
热议问题