0
我目前有這樣的使G ++點這個錯誤/警告了
std::string student::returnData()
{
// return "This is return type" ;
std::cout << "Hello World";
}
一份聲明然而,當我建立了C++項目作爲這樣
entry: main.o student.o
g++ -W -Wall -Werror -o [email protected] main.o student.o
main.o:
g++ -W -Wall -Werror -c main.cpp
clean:
rm -rf *.o entry
我不是給予警告/錯誤,當這種方法執行輸出開始瘋狂 任何建議,我可以做什麼,所以我可以得到像這樣的愚蠢的錯誤警告
您是否在製作過程中將錯誤重定向到某些文件? – P0W 2014-11-02 06:29:02
你是否有'student.o'的規則,或者你在使用隱式規則嗎? – juanchopanza 2014-11-02 06:49:11
不,我沒有學生規則.o – Rajeshwar 2014-11-02 06:50:25