-
Notifications
You must be signed in to change notification settings - Fork 3
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
Compilation issues on a personal machine #13
Comments
The system detected static libraries and @AxelDora is trying to build shared ones. The error: /usr/bin/x86_64-linux-gnu-ld: /usr/local/lib/x86_64-linux-gnu/libfftw3_mpi.a(api.o): relocation R_X86_64_PC32 against symbol `ompi_mpi_comm_null' can not be used when making a shared object; recompile with -fPIC basically says that you need position independent code to construct a shared library. TL;DR Substitute:
with
in |
Hi guys. |
Describe the bug
Compiling the code on a personal machine returns an error in the code that seems to be linked to how the libraries being used are linked by cmake
Expected Result
Compilation
Actual Result
Information on your system
Running on Ubuntu 18.04.1 LTS
2. (CMake configuration: 3.10.2-1ubuntu2)
Running on a 2015 Lenovo Y50-70
The text was updated successfully, but these errors were encountered: