6

コードを実行しようとしました

#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.

どうすれば問題を解決できますか?

4

1 に答える 1

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

回避策の1つは、代わりにこのパターンを使用してヘッダーを含めることです。

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

その後:

~/coding/q$ g++ test.cpp -lquadmath
~/coding/q$ ./a.out 
1.000000
于 2012-11-26T19:38:08.270 に答える