-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to build Cxx on Travis #385
Comments
We discovered that one has to use a flag to make use of prebuilt binaries. However, Cxx still needs to build a small component, which fails to link on Linux, with the message below. We are installing the version of binutils needed and setting the path, as specified in the .travis.yml file for Cxx.jl. But the linker still fails.
|
Here is our .travis.yml, in case anyone can spot what we are missing: https://github.com/wbhart/Singular.jl/blob/master/.travis.yml |
I think the relative path build/clang-3.9.1/lib may be incorrect when Cxx is built from another package. Perhaps it needs to be made an absolute path when building libcxxffi.so? |
Cxx's build system has been switched to BB2. Now it uses pre-built binaries on Travis. |
Now, source-build has also been improved in #450, which means it's possible to build on CI. |
Does anyone know how to build Cxx on Travis (as a prereq for another project).
As Cxx is building, I get a lot of "g++: internal compiler error: Killed (program cc1plus)" errors, which presumably indicates it is running out of memory and or trying to use too many cores.
Is this a known issue? Is there a known workaround?
The text was updated successfully, but these errors were encountered: