错误make:***与g ++

时间:2017-10-07 12:54:48

标签: c++ linux eclipse makefile g++

从今天早上开始,我的C ++项目出现以下错误: 制作:*** [myproject]错误1
我正在使用Raspbian Stretch上的Eclipse构建 错误与整个项目有关,而不仅仅与代码有关 我是否打破了g ++或其他什么?

修改
我的main()是空的:

#include "ClassesSocket/ServeurSocket.h"

using namespace std;

int main(int argc, char** argv) {

    //ServeurSocket *serveur = new ServeurSocket(25565);


    /*char* status = serveur->start();
    cout << status << endl;

    string message = serveur->recevoirMessage(socketCommunication);
    cout << message << endl;*/

    //delete serveur;
    //serveur = 0;

    return 0;
}

1 个答案:

答案 0 :(得分:1)

您的文件中似乎没有main(),或者未定义myproject

请分享描述问题的代码截图或摘要。

Simmiler问题: C ++确实使“name mangling”允许多个函数具有相同的功能 名称仅在返回和参数类型方面有所不同。更多 Eclipse Community Forums