[BUG] Failed to compile app #1135
-
Describe the bug To Reproduce Environment (please complete the following information):
Additional context |
Beta Was this translation helpful? Give feedback.
Replies: 9 comments
-
根据我的经验来说,类似 Killed(program cc1plus) 这种错误,是编译的时候OOM了。coordinator Pod 的内存给的小了,可以调到4G 试试。 |
Beta Was this translation helpful? Give feedback.
-
@lidongze0629 Could you please update the configuration of try.graphscope.app to migrate to our latest release? |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
看起来是编译时出了错误。报错里应该有一个本地的路径是app的临时编译目录,没有的话你可以找一下 |
Beta Was this translation helpful? Give feedback.
-
Could we add an options to report the compile error message to the client? |
Beta Was this translation helpful? Give feedback.
-
Going on at v0.9.0 |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
@fresher1chen Does folly exist in your local environment, and could you tell us the version of folly. |
Beta Was this translation helpful? Give feedback.
-
这个问题是由于 folly 在低版本gcc(5.4)下不兼容造成的,升级gcc (>=7.1.0) 可以解决这个问题 (ubuntu16 + python3.9 + gcc 7.10) ubuntu16 下升级 gcc可以参考如下链接: https://askubuntu.com/questions/859256/how-to-install-gcc-7-or-clang-4-0 sudo apt install software-properties-common
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-7 g++-7
gcc-7 --version
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70 --slave /usr/bin/g++ g++ /usr/bin/g++-7
sudo update-alternatives --config gcc
gcc -v |
Beta Was this translation helpful? Give feedback.
这个问题是由于 folly 在低版本gcc(5.4)下不兼容造成的,升级gcc (>=7.1.0) 可以解决这个问题 (ubuntu16 + python3.9 + gcc 7.10)
ubuntu16 下升级 gcc可以参考如下链接:
https://askubuntu.com/questions/859256/how-to-install-gcc-7-or-clang-4-0
https://phoenixnap.com/kb/add-apt-repository-command-not-found-ubuntu
https://tuxamito.com/wiki/index.php/Installing_newer_GCC_versions_in_Ubuntu