-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe common ways of using ModelicaUtilities.h #3455
Open
henrikt-ma
wants to merge
1
commit into
modelica:master
Choose a base branch
from
henrikt-ma:using-modelicautilities
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The term "standardized" is a bit ambiguous, would it be possible to be clearer?
As a library developer ideally one would want a tool-independent way of building external libraries using them; having a standardized tool-dependent way would be messy, and we have neither (that's why wrappers are needed even if building libraries for Modelica - but on the other hand making the library independent of Modelica has benefits).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm... Having tested a few things within ModelicaStandardLibrary I'm not sure how necessary and correct this is.
The current build-projects for resources just includes ModelicaUtilities.h; and doesn't do any special tricks, so it seems there is at least a tool-dependent way of building external libraries using the function in ModelicaUtilities.h; and the resulting library may even be portable between tools (I haven't checked).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, it would be possible, but I'd also like to avoid introducing new ways to talk about what is determined by the document itself. For example, we currently have formulations such as
Hence, I'm somewhat skeptical to use a formulation like this instead:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The MSL is cheating by including its own copy of ModelicaUtilities.h. We don't want a solution where there's a copy of this file in every library; it would make it impossible to develop the contents of the file. Instead, there should be a mechanism for tools to tell (CMake projects à la #1668) where they provide this file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But even if MSL is "cheating" - it seems odd to specify that the approach that is currently used shouldn't work. I agree that we need something better, but requiring a change before we have a the better approach seems problematic.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That we state that there is no standardized way is not the same as saying that there is nothing that could work in non-standardized ways.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which no longer is true as of modelica/ModelicaStandardLibrary#3871.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, this just shifts the discussion to whether what is done inside .CI could be considered a standardized non-cheating solution for building the binaries. I still think it isn't; the CI is like its own tool environment, providing its own ModelicaUtilities.h (as every tool environment should) and building the binaries in a way which hasn't been standardized (and probably won't be either, as everything points in the direction of going with CMake for standardization).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is getting messier, as we now we have modelica/ModelicaStandardLibrary#4487 restoring the
ModelicaUtilities.h
and the separate discussion on building libraries dependingModelicaUtilities.h
without including it.I see some possibilities for the future:
ModelicaUtilities.h
as proposed in that PR - in that case that part(*) of this PR isn't neededModelicaUtilities.h
, but then it might be that we should describe in more detail how to work around that (will be a bit more text, but it is still possible).I think we need to coordinate with/wait for modelica/ModelicaStandardLibrary#4487 and thus haven't added it to the current milestone.
(*) However, this PR also explains how include could define either inline code, or include some code. That part might be generally useful even without
ModelicaUtilities.h
.