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.
これで何が問題になる可能性がありますか?