We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05df6d2 commit 9f75cf9Copy full SHA for 9f75cf9
OMCompiler/SimulationRuntime/c/simulation/solver/cvode_solver.h
@@ -31,6 +31,11 @@
31
#ifndef CVODE_SOLVER_H
32
#define CVODE_SOLVER_H
33
34
+/* link sundials static on Windows */
35
+#if defined(__MINGW32__) || defined(_MSV_VER)
36
+#define LINK_SUNDIALS_STATIC 1
37
+#endif
38
+
39
#include "cvode/cvode.h" /* prototypes for CVODE fcts., consts. */
40
#include "cvode/cvode_impl.h" /* prototypes for CVODE internal consts.*/
41
#include "cvode/cvode_dense.h" /* prototype for CVODE dense matrix functions and constants */
0 commit comments