使用quadmath的G ++ 4.6.3 Linux中的四倍精度

dSt*_*ack 6 linux ubuntu quadruple-precision

我尝试执行代码

#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;
}
Run Code Online (Sandbox Code Playgroud)

用命令

g++ test.cpp -o test
Run Code Online (Sandbox Code Playgroud)

我收到错误:

/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
Run Code Online (Sandbox Code Playgroud)

版本是:

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.
Run Code Online (Sandbox Code Playgroud)

我该如何解决这个问题?

DSM*_*DSM 5

我看到相同的行为:

~/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
Run Code Online (Sandbox Code Playgroud)

一种解决方法是使用此模式包含标头:

extern "C" {
#include "quadmath.h"
}
Run Code Online (Sandbox Code Playgroud)

之后:

~/coding/q$ g++ test.cpp -lquadmath
~/coding/q$ ./a.out 
1.000000
Run Code Online (Sandbox Code Playgroud)