We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Running Xeus-Cling on Conda + Ubuntu.
I make, build, and install SymEngine from source: https://github.com/symengine/symengine.git
mkdir build && cd build cmake .. make make install
Then run Xeus-Cling via conda and do:
#pragma cling add_include_path("/usr/local/include/") #pragma cling add_library_path("/usr/local/lib/") #pragma cling load("symengine")
with an error:
input_line_14:3:31: fatal error: 'symengine' file not found #pragma cling load("symengine") ^ Interpreter Error:
What's the proper way to load third party libraries that were compiled on your personal system?
The text was updated successfully, but these errors were encountered:
Ok, so SymEngine is creating a static library: libsymengine.a and when using: #pragma cling load("/path/to/libsymengine.a") it does not recognize it.
libsymengine.a
#pragma cling load("/path/to/libsymengine.a")
Does Xeus-Cling not compatible with static libraries?
Sorry, something went wrong.
No branches or pull requests
Running Xeus-Cling on Conda + Ubuntu.
I make, build, and install SymEngine from source: https://github.com/symengine/symengine.git
Then run Xeus-Cling via conda and do:
with an error:
What's the proper way to load third party libraries that were compiled on your personal system?
The text was updated successfully, but these errors were encountered: