为什么链接器找不到main()?

时间:2012-11-25 04:18:27

标签: c++ linker-errors ld

我收到了下一条错误消息:

usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crt1.o: In
function `_start':  (.text+0x20): undefined reference to `main' 
collect2: ld returned 1 exit status

我唯一的代码是:

FILE *f = fopen("data/file.dat", "rb");
fseek(f, 0, SEEK_END);
long pos = ftell(f);
fseek(f, 0, SEEK_SET);

char *bytes = malloc(pos);
fread(bytes, pos, 1, f);
fclose(f);

现在,我来自Java背景,但我一直在谷歌搜索,它说我可能会错过参考但我不知道它是什么,我甚至添加了#include <stdio.h>我读了关于添加extern但我不知道在哪里因为我没有其他文件,除非我需要引用.dat文件?

编辑我也尝试过强制转换字节数组(char*)malloc(pos);,但它也无济于事。

编辑2 整个代码使用的是NS-3框架,但所有内容都完美编译,直到我添加这些行。它看起来像这样:

#include "ns3/core-module.h"
#include "ns3/point-to-point-module.h"
#include "ns3/network-module.h"
#include "ns3/applications-module.h"
#include "ns3/wifi-module.h"
#include "ns3/mobility-module.h"
#include "ns3/csma-module.h"
#include "ns3/internet-module.h"

using namespace ns3;

NS_LOG_COMPONENT_DEFINE ("ThirdScriptExample");

int 
main (int argc, char *argv[])
{
      .....
//STARTS FILE READING
  FILE *f = fopen("data/Terse_Jurassic_10_14_18.dat", "rb");
  fseek(f, 0, SEEK_END);
  long pos = ftell(f);
  fseek(f, 0, SEEK_SET);

  char *bytes = (char*)malloc(pos);
  fread(bytes, pos, 1, f);
  fclose(f);

  Simulator::Stop (Seconds (10.0));

  pointToPoint.EnablePcapAll ("third");
  phy.EnablePcap ("third", apDevices.Get (0));
  csma.EnablePcap ("third", csmaDevices.Get (0), true);

  Simulator::Run ();
  Simulator::Destroy ();
  return 0;
}

编译器错误消息是:

[1888/1930] cxxprogram:  -> build/scratch/data/data
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/crt1.o: In
function `_start': (.text+0x20): undefined reference to `main'
collect2: ld returned 1 exit status Build failed  -> task in 'data'
failed (exit status 1):   {task 43470800: cxxprogram  -> data}

我非常肯定NS-3代码(由于代码行而没有添加的部分以及读取文件之后的部分,因为在添加部件以读取文件之前一切都运行良好。

2 个答案:

答案 0 :(得分:0)

  

我唯一的代码是

您没有将此代码放入main函数(您需要具有此函数),或者您的编译器/链接器调用不正确。鉴于你提供的细节,不可能说出哪一个。

此外,您的问题标题不正确:您在阅读文件时遇到问题,链接您的程序(打算阅读文件)时出现问题。

答案 1 :(得分:0)

您的程序必须包含一个main()功能。

#include <stdio.h>
#include <string.h>
int main(int argc, char *argv[])
{
    FILE *f = fopen("data/file.dat", "rb");
    fseek(f, 0, SEEK_END);
    long pos = ftell(f);
    fseek(f, 0, SEEK_SET);

    char *bytes = malloc(pos);
    fread(bytes, pos, 1, f);
    fclose(f);
    free(bytes);
    return 0;
}