Andreas

Results 64 comments of Andreas

Great. Hit me up if you need some help or more details.

> Do you have idea about improving it? Not really. But to add a new solver to the FMU export you don't need to change this part. Here's a what...

How to build OpenModelica is explained in https://github.com/OpenModelica/OpenModelica?tab=readme-ov-file#build-openmodelica or more specifically in https://github.com/OpenModelica/OpenModelica/blob/master/README.cmake.md#1-quick-start. For Eclipse there is [some documentation for the MDT debugger](https://github.com/OpenModelica/OpenModelica/wiki/Setting-up-MDT-debugger-in-Eclipse), but that's mainly for debugging the Backend....

@twxin Please make a commit and point to your branch with that change, so I don't need to download files and can see your changes without searching for it.

Looks like the error message disappeared. You can re-run CMake to check what's the output without omc filtering it: ```bash cd TestFMU.fmutmp/sources cmake --build build_cmake_dynamic --target all ``` The issue...

I guess we need to test even more quoted identifiers. A quoted identifier is constructed from: > Q-IDENT = "'" { Q-CHAR | S-ESCAPE } "'" > Q-CHAR = NON-DIGIT...

@perost where is `IDENT` defined for the Lexer? I had to fix this for tree-sitter (https://github.com/OpenModelica/tree-sitter-metamodelica/commit/45c23aa3fd2d2e45ac3eb3e93744c0fe1d7fde80)

> In fact, I recently opened https://github.com/OpenModelica/OpenModelicaLibraryTesting/issues/90 which would be very useful from this point of view. @AnHeuermann would you like to help with that? Yes, that would be a...

Oh and I need to add a test with `Real /*(y)*/ 'stupid,name';` and check if that one is escaped correctly in CSV files as well as MAT files.

@twxin I added a test so we can see if the IDA CS FMU is working. I also fixed the compilation issue from omc. I think you are very close...