brendansndrs

Results 4 comments of brendansndrs

Thank you, I have since been able to compile the S-Function by changing to a shared library. I also had to manually copy the various files into the install directory...

Thank you. So far I have gotten OpenFAST to work with the solution from matlabcentral, by overriding the built in libraries it does run. The downside is, as mentioned in...

When I compile with the following command: `cmake .. -DBLAS_LIBRARIES="/usr/local/lib/libopenblas.a" -DLAPACK_LIBRARIES="/usr/local/lib/libopenblas.a" -DCMAKE_INSTALL_PREFIX="/usr/local/" -DBUILD_OPENFAST_SIMULINK_API=ON -DBUILD_SHARED_LIBS=OFF` I get the error: ``` [ 28%] Linking Fortran executable aerodyn_driver /usr/bin/ld: /usr/local/lib/libopenblas.a(blas_server.o): undefined reference to...

@Seager1989 To load Matlab, from the terminal I use: ``` export BLAS_VERSION=libopenblas.so export LAPACK_VERSION=libopenblas.so matlab ``` When running with MKL rather than OpenBLAS I use: ``` export BLAS_VERSION=libmkl_intel_lp64.so export LAPACK_VERSION=libmkl_intel_lp64.so...