gpt4 book ai didi

c++ - 对应于 C++ 中的 main 函数的编译时错误

转载 作者:行者123 更新时间:2023-12-02 11:12:20 24 4
gpt4 key购买 nike

关闭。这个问题需要debugging details .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

7年前关闭。




Improve this question




这是我的编译命令,后面是我收到的错误消息。
还附上了可以查看代码的链接。

g++ -Wall `root-config --cflags --ldflags --libs` StevenJohnsonDoubleIntegration.cpp

/usr/lib/gcc/i686-redhat-linux/4.9.2/../../../crt1.o: In function `_start':(.text+0x18): undefined reference to `main'

collect2:错误:ld 返回 1 个退出状态

Link

最佳答案

错误 未定义对主要 的引用表示在链接时,没有 main()功能。

查看示例代码,有一条注释说:

Compile with -DTEST_INTEGRATOR to generate this little test program.

Usage: ./integrator <dim> <tol> <integrand> <maxeval>

where = # dimensions, = relative tolerance,
is either 0/1/2 for the three test integrands (see below), and is the maximum # function evaluations (0 for none).



查看代码,除非定义了这个符号,否则 main 函数被排除在构建之外。

所以,添加 -DTEST_INTEGRATOR到您的命令行进行编译。您可能还需要 -o integrator使输出称为 integrator而不是 a.out
g++ -DTEST_INTEGRATOR -Wall `root-config --cflags --ldflags --libs` StevenJohnsonDoubleIntegration.cpp -o integrator

关于c++ - 对应于 C++ 中的 main 函数的编译时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28228660/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com