-
Notifications
You must be signed in to change notification settings - Fork 98
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
Make Errors #22
Comments
It seems for some reason you are not able to compile the tests. Can you try to compile a sample program with the same compiler/libraries you're using here to see if that's where the problem is? (here's an example: http://stackoverflow.com/questions/32453386/how-to-compile-boost-unit-test-module-with-clang) In any case I'll try to add a flag to avoid test compilation if not needed so you'll be able to go around the problem if needed. |
May be related to this #17 ? |
@alecive That's Eigen, this problem here is in boost, so should be unrelated. |
Ops sorry I didn't pay enough attention. |
@Svalorzen I tried the example
I then compiled with g++-5 and it worked. SO I compiled the software with g++-5. There is another issue.
The ctest results is pasted below:
|
Yes. So the warnings I can't do anything about, since they are from the Eigen library. As the Eigen library improves, they'll remove them, but in any case you shouldn't worry about them. About the failed tests, it seems that only your Python tests fail. Would you mind running |
|
Mmmhh.. I think those are just problems due to the fact that you compiled with g++ 5, but python is finding your libstdc++.so.6 which has an incompatible ABI with your compiled .so libraries. If you don't intend to use Python, you can ignore the error. Otherwise, you'll have to add the path to the correct Unfortunately these problems are due to your own personal setup so I can't really do much for you. Try looking up the problems you're having online and you should be able to find the solution. The library compiles for you so at least that's working. |
Hello @Svalorzen, I've got the following issues while compiling your software:
-- The C compiler identification is GNU 4.9.3
-- The CXX compiler identification is GNU 4.9.3
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Boost version: 1.58.0
-- Found Eigen3: /usr/local/include/eigen3 (Required is at least version "3.2")
-- Found PythonLibs: /home/jing/anaconda2/lib/libpython2.7.so (found suitable version "2.7.12", minimum required is "2.7")
-- Boost version: 1.58.0
-- Found the following Boost libraries:
-- python
-- Performing Test LPSOLVE_LINKS_ALONE
-- Performing Test LPSOLVE_LINKS_ALONE - Success
-- Found LpSolve: /usr/local/lib/liblpsolve55.so
-- Boost version: 1.58.0
-- Found the following Boost libraries:
-- unit_test_framework
-- Found PythonInterp: /home/jing/anaconda2/bin/python2.7 (found suitable exact version "2.7.12")
-- Configuring done
-- Generating done
The text was updated successfully, but these errors were encountered: