gpt4 book ai didi

c++ - 使用 quadmath 在 G++ 4.6.3 Linux 中实现四倍精度

转载 作者:IT王子 更新时间:2023-10-29 00:55:17 24 4
gpt4 key购买 nike

我已经尝试执行代码了

#include <quadmath.h>
#include <iostream>
int main()
{
char* y = new char[1000];
quadmath_snprintf(y, 1000, "%Qf", 1.0q);
std::cout << y << std::endl;
return 0;
}

用这个命令

g++ test.cpp -o test

但是我得到了错误:

/tmp/cctqto7E.o: In function `main':
test.cpp:(.text+0x51): undefined reference to `quadmath_snprintf(char*, unsigned int, char const*, ...)'
collect2: ld returned 1 exit status

版本是:

g++ --version
g++ (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

我该如何解决这个问题?

最佳答案

我看到了相同的行为:

~/coding/q$ g++ test.cpp -lquadmath
/tmp/ccYdHwL5.o: In function `main':
test.cpp:(.text+0x51): undefined reference to `quadmath_snprintf(char*, unsigned int, char const*, ...)'
collect2: ld returned 1 exit status

一种解决方法是改为使用此模式包含 header :

extern "C" {
#include "quadmath.h"
}

之后:

~/coding/q$ g++ test.cpp -lquadmath
~/coding/q$ ./a.out
1.000000

关于c++ - 使用 quadmath 在 G++ 4.6.3 Linux 中实现四倍精度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13571621/

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