我正在从编译场处理GCC111。该机器是带有IBM XLC 12.1的AIX 7.1,POWER7。我正在尝试使用__rotatel4
:
$ cat test.cxx
#include <cstdlib>
unsigned int Foo (unsigned int x)
{
return __rotatel4(x, 4U);
}
编译将导致:
$ xlC -O3 -c test.cxx
"test.cxx", line 5.10: 1540-0274 (S) The name lookup for "__rotatel4" did not find a declaration.
根据编译器手册IBM XL C/C++ for AIX, V12.1(第486页),内部函数应该可用。这是原型,它没有像POWER6这样的限制:
unsigned int __rotatel4 (unsigned int rs, unsigned int shift)
添加-qarch=pwr7
和/或-D_XOPEN_SOURCE=600
导致相同的错误。我找到了Unexpected name lookup error "1540-0274 (S)" when compiling code with templates,但似乎在这里并不适用。
一个人如何在程序中使用__rotatel4
?
gcc111$ oslevel -s
7100-03-02-1412
gcc111$ xlC -qversion
IBM XL C/C++ for AIX, V12.1 (5765-J02, 5725-C72)
Version: 12.01.0000.0000
答案 0 :(得分:2)
对于XL C / C ++ V12.1,您需要包括<builtins.h>
:
$ cat aaa.cpp
#include <cstdlib>
unsigned int Foo (unsigned int x)
{
return __rotatel4(x, 4U);
}
$ xlC aaa.cpp -c
"aaa.cpp", line 5.10: 1540-0274 (S) The name lookup for "__rotatel4" did not find a declaration.
$ cat aaa.cpp
#include <cstdlib>
#include <builtins.h>
unsigned int Foo (unsigned int x)
{
return __rotatel4(x, 4U);
}
$ xlC aaa.cpp -c
$
对于即将发布的16.1版本(处于beta版),您不需要它。 (无论有没有,它都可以使用。)