Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Geany 编写一些 .c 文件,并且我对使用 c99 标准进行编译很感兴趣。
我看到我可以设置构建命令,我认为这是我需要的地方,但我似乎无法获得正确的语法。以下是我在“编译”选项卡中尝试过的命令,但似乎没有一个有效;
gcc -std=c99 -Wall -c "%f" gcc -Wall -c -std=c99 "%f" gcc -Wall -std=c99 -c "%f"
任何帮助表示赞赏!