我没有做太多努力去发现原因,但是 gcc 4.8.1 给我编译结合 c 和 c++ 以及 c++11 中的一些新东西的旧源代码带来了很多麻烦
我已经设法在这段代码中隔离了问题:
# include <argp.h>
# include <algorithm>
g++ -std=c++0x -c -o test-temp.o test-temp.C
它可以与4.6.3 版 ubuntu 12.04一起编译
相比之下,在 4.8.1 版本中,相同的命令行会引发很多错误:
In file included from /home/lrleon/GCC/lib/gcc/x86_64-unknown-linux-gnu/4.8.1/include/x86intrin.h:30:0,
from /home/lrleon/GCC/include/c++/4.8.1/bits/opt_random.h:33,
from /home/lrleon/GCC/include/c++/4.8.1/random:51,
from /home/lrleon/GCC/include/c++/4.8.1/bits/stl_algo.h:65,
from /home/lrleon/GCC/include/c++/4.8.1/algorithm:62,
from test-temp.C:4:
/home/lrleon/GCC/lib/gcc/x86_64-unknown-linux-gnu/4.8.1/include/mmintrin.h: In function ‘__m64 _mm_cvtsi32_si64(int)’:
/home/lrleon/GCC/lib/gcc/x86_64-unknown-linux-gnu/4.8.1/include/mmintrin.h:61:54: error: can’t convert between vector values of different size
return (__m64) __builtin_ia32_vec_init_v2si (__i, 0);
^
... 以及更多。
如果我执行也会发生同样的情况
g++ -std=c++11 -c -o test-temp.o test-temp.C
; 再次,版本 4.8.1
但是,如果我交换标题行,那就是
# include <algorithm>
# include <argp.h>
然后一切编译正常。
有人启发我了解发生了什么?