でのプログラミングはEmacsでのMx Flymakeモードを実行しようとするとしながら、私が取得:Flymake構成エラーC
Flymake: Configuration error has occured while running (make -s -C ./CHK_SOURCES=helloworld_flymake.c SYNTAX_CHECK_MODE=1 check-syntax). Flymake will be switched OFF
は私がhelloworld.cと呼ばれるバッファ内のコマンドを実行しています:
#include <stdio.h>
int main(void) {
printf("Hello World");
return 0;
}
私はUbuntuの9.04の下でGNU Emacsの23.0.91.1を実行している
helloworld: helloworld.c
gcc helloworld.c -o helloworld
:と同じディレクトリにあるMakefileという名前のファイルを持っています。
ありがとうございます!
はい、私はスペースではなくタブを使用しています。私がシェルに "make"とタイプするとコンパイルがうまくいきます。 –