Open
Description
It would be nice if the Fortran wrapper could be built and used as a dependency with fpm.
The challenges are the many libraries that need to be installed and linked. Last time I tried the command needed was:
gfortran -o test_symengine -I/usr/local/include/symengine symengine_cwrapper.o test_symengine.o -L/usr/local/lib -lsymengine -lteuchos -lstdc++ -lmpfr -lgmp -lbfd
Or with the C++ driver as compiler (see #6):
g++ test.o symengine.o /home/symengine/build/symengine/libsymengine.a /home//symengine/build/symengine/utilities/teuchos/libteuchos.a -lgfortran -lgmp -lbfd -otest
@certik, is symengine installable using conda or pip?