我正在尝试在 scons 中编译一个 c++ 程序。scons 适用于 c 程序,但对于 c++,它会给出以下错误。请问有人可以帮我解决这个问题吗,谁知道呢?
第一个.cpp
#include <iostream>
int main()
{
std::cout << "hellooo" << std::endl;
return 0;
}
S构造函数
Program('first','first.cpp')
错误:
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
o first.o -c first.cpp
sh: o: command not found
o first.exe first.o
sh: o: command not found
scons: done building targets.
这可能是什么问题?