作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我非常绝望...我正在使用Ubuntu 18.04.3 LTS
对于机器人类(class),我不得不使用make命令来构建他们的项目(从git克隆之后)。一段时间后,我收到以下消息:enter image description here
(...)
make[1]: Entering directory '/home/fia/robotics-course/rai/rai/ry'
* UpToDate ../../rai/Kin/libKin.so
* UpToDate ../../rai/Core/libCore.so
* UpToDate ../../rai/KOMO/libKOMO.so
* UpToDate ../../rai/LGP/libLGP.so
g++ -g -march=native -Wall -DRAI_PYBIND `python3-config --cflags` -Wno-terminate -fPIC -std=c++14 -o lgp-py.o -c lgp-py.cpp
* UpToDate ../../rai/Operate/libOperate.so
g++ -g -march=native -Wall -DRAI_PYBIND `python3-config --cflags` -Wno-terminate -fPIC -std=c++14 -o ry.o -c ry.cpp
* UpToDate ../../rai/Perception/libPerception.so
* UpToDate ../../rai/RosCom/libRosCom.so
g++ -L/home/fia/robotics-course/rai/lib -L/usr/local/lib -o libry.so ./lgp-py.o ./ry.o -lCore -lKin -lKOMO -lLGP -lOperate -lRosCom -lPerception `python3-config --ldflags` -lrt -shared
lto1: internal compiler error: in lto_tag_to_tree_code, at lto-streamer.h:1005
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-7/README.Bugs> for instructions.
lto-wrapper: fatal error: g++ returned 1 exit status
compilation terminated.
/usr/bin/ld: error: lto-wrapper failed
collect2: error: ld returned 1 exit status
../../build/generic.mk:299: recipe for target 'libry.so' failed
make[1]: *** [libry.so] Error 1
make[1]: Target 'default' not remade because of errors.
make[1]: Leaving directory '/home/fia/robotics-course/rai/rai/ry'
***** FAILED rai/rai/ry/libry.so
最佳答案
“内部编译器错误”听起来像是编译器中有一个错误,因此这里有一些解决方法。
您可以尝试使用clang++而不是g++进行编译。使用以下方法安装:
sudo apt-get install clang
CC=clang CXX=clang++ LD=clang make
lto
,因此您还可以关闭链接时优化:
LDFLAGS=-fno-lto make
关于python - 我该如何解决lto1 : internal compiler error: in lto_tag_to_tree_code, at lto-streamer.h:1005 that appears after 'make' command,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58840044/
我非常绝望...我正在使用Ubuntu 18.04.3 LTS 对于机器人类(class),我不得不使用make命令来构建他们的项目(从git克隆之后)。一段时间后,我收到以下消息:enter ima
我是一名优秀的程序员,十分优秀!