编译器没有看到我的主要功能(未定义的主要参考)

时间:2015-11-06 18:56:20

标签: c++ compiler-errors linker-errors undefined-reference

我的项目中有2个cpp和3个头文件。当我在VS中编译它时,它运行顺利,我没有收到错误消息。但是当我尝试通过这一行在SSH网络上编译它时:

g++ -o program.cpp lineoperations.cpp customer.h transaction.h lineoperations.h

它说:

In function `_start':
(.text+0x20): undefined reference to `main'

不要说"不要忘记写主要功能"因为它已经存在并且我的项目适用于VS.该怎么办?

以下是我的代码中的相关部分。 Program.cpp直到main:

#include <iostream>
#include <cstdlib>
#include <iomanip>
#include <ctype.h>
#include <cstring>
#include <cstdio>
#include "lineoperations.h"
using namespace std;

line bankline;
bool operate(char);
void search(char[]);
void add(char[]);
void removee(char[]);
void transaction();
void printline();

int main(){
    bankline.create();
    bool end = false;
    while (!end) {
        end = bankline.decideFunction();
    }
    bankline.close();
    return EXIT_SUCCESS;
}

它继续,但我猜没有必要粘贴它们。如果您需要查看其他cpp文件或头文件,我也会粘贴它们。

1 个答案:

答案 0 :(得分:5)

命令:

g++ -o program.cpp lineoperations.cpp customer.h transaction.h lineoperations.h

告诉g++编译和链接文件:

lineoperations.cpp customer.h transaction.h lineoperations.h

并输出一个名为program.cpp的可执行程序。

由于您观察到的链接错误,此操作失败 mainprogram.cpp中定义,您没有编译或链接。

请改为尝试:

g++ -o program program.cpp lineoperations.cpp customer.h transaction.h lineoperations.h

或者如果你在Windows上:

g++ -o program.exe program.cpp lineoperations.cpp customer.h transaction.h lineoperations.h

而且顺便说一句,没有必要在命令行上列出头文件。他们包括在内 我猜想源文件。