gpt4 book ai didi

c++ - 从命令行为源文件定义宏

转载 作者:搜寻专家 更新时间:2023-10-31 02:24:20 25 4
gpt4 key购买 nike

我正在尝试使用 -D 标志从 ubuntu 系统的命令行为源文件定义一个宏。源文件是:

#include<iostream>
using namespace std;

int factorial(int n){
if(n!=1){
return(n * factorial(n-1));
}
else return 1;
#ifdef DEEPAK

cout<<"hello"<<endl;
#endif
}
int main()
{
factorial(4);
return(0);
}

我输入的命令是:

gcc -Wall -DDEEPAK  factorial.cpp -o main

但是,我收到错误:

/tmp/cc4Ii5l2.o: In function `__static_initialization_and_destruction_0(int, int)':
factorial.cpp:(.text+0x63): undefined reference to `std::ios_base::Init::Init()'
factorial.cpp:(.text+0x72): undefined reference to `std::ios_base::Init::~Init()'
collect2: error: ld returned 1 exit status

任何帮助将不胜感激。谢谢。

最佳答案

您应该在命令中使用 g++ 而不是 gcc,因为 gcc 默认不链接到 C++ STL,因此它给出了对 std::ios_base 的 undefined reference 。

g++ -Wall -DDEEPAK  factorial.cpp -o main

关于c++ - 从命令行为源文件定义宏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28123328/

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