Andreas

Results 167 comments of Andreas

`USE_DGESV` is added if a linear solver is needed. This isn't the case here, but that a Modelica function needs an external function from library `LAPACK`. Only by coincidence this...

I'm not sure. Maybe add a Windows specific case to https://github.com/OpenModelica/OpenModelica/blob/master/OMCompiler/Compiler/Template/CodegenFMUCpp.tpl#L822-L828 ```Makefiles # link with simple dgesv or full lapack ifeq ($(USE_DGESV),ON) $(eval LIBS=$(LIBS) -lOMCppDgesv_static) else $(eval LIBS=$(LIBS) -L$(LAPACK_LIBS) $(LAPACK_LIBRARIES))...

@mahge fixed many memory issues for FMU export. Maybe this is already fixed.

Sorry, I don't know how this POSIX stuff is supposed to work, so I can't give a review.

You have an issue with your `PATH`: ``` export PATH=$PATH:/c/Program\ Files/Git/mingw64/bin/ ``` You want it to be ``` export PATH=$PATH:/c/Program\ Files/Git/bin ``` instead. The issue is, that you'll have mingw64...

KINSOL is failing for equation 3361: ``` LOG_NLS_V | info | Start Kinsol solver at time 0.001 | | | | | Kinsol Configuration | | | | | |...

It could be possible, that we never encountered the combination of using KINSOL + KLU without having a sparsity pattern. From the KINSOL user's guide: > flag = KINSetJacFn(kin mem,...

> @AnHeuermann is there any way to make CMake run in verbose mode when compiling FMUs? (Other than running the build command manually with -v, I mean) Nope, you have...

> But when I try to export as an FMU I am getting a new error: I think you are close. The question now is why isn't CMake searching in...