我有 Ubuntu 17.10 和 Code::Blocks 16.01。我无法构建和运行像“Hello World!”这样的简单代码。
-------------- Build: Debug in program (compiler: GNU GCC Compiler)---------------
g++.exe -Wall -fexceptions -g -c /home/v4m3r/Documents/codeblocks/program/main.cpp -o obj/Debug/main.o
/bin/sh: 1: g++.exe: not found
Process terminated with status 127 (0 minute(s), 0 second(s))
0 error(s), 0 warning(s) (0 minute(s), 0 second(s))
我安装了 build-essential。
答案1
您的编译命令是,g++.exe
但.exe
通常意味着 Windows 可执行文件。在 Linux 上,命令是g++
。您应该检查您的配置并.exe
从命令中删除。