the*_*oon 10 c++ linux gcc casablanca
我正在尝试建立卡萨布兰卡,就像他们在自己的页面上所说的那样.因为我已经gcc-4.8.1安装使用CXX=gcc-4.8不正常,所以我已经删除它只做:
cmake .. -DCMAKE_BUILD_TYPE=Release
Run Code Online (Sandbox Code Playgroud)
它创建文件,当我这样做时,make我收到这些错误:
Scanning dependencies of target casablanca
[ 1%] Building CXX object src/CMakeFiles/casablanca.dir/streams/linux/fileio_linux.cpp.o
/tmp/ccoWLl81.s: Assembler messages:
/tmp/ccoWLl81.s:97: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:188: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:298: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:310: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:322: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:334: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:371: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:494: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:508: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:522: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:536: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:550: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:2028: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:2057: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:2086: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:3975: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:6186: Error: expecting string instruction after `rep'
/tmp/ccoWLl81.s:10355: Error: expecting string instruction after `rep'
make[2]: *** [src/CMakeFiles/casablanca.dir/streams/linux/fileio_linux.cpp.o] Error 1
make[1]: *** [src/CMakeFiles/casablanca.dir/all] Error 2
make: *** [all] Error 2
Run Code Online (Sandbox Code Playgroud)
有人遇到过这个问题吗?是因为gcc4.8.1吗?怎么解决?
jtl*_*lim 15
问题是gcc 4.8正在生成"rep; ret"指令以避免AMD芯片的性能损失.较旧的汇编程序将此检测为错误.
细节在这里:
https://gcc.gnu.org/ml/gcc-help/2011-03/msg00286.html
解决方法是更新binutils,以便获得接受此指令的更新版本的汇编程序.
| 归档时间: |
|
| 查看次数: |
8337 次 |
| 最近记录: |