Skip to content

Commit

Permalink
Updated documentation of --linkType (#7659)
Browse files Browse the repository at this point in the history
  • Loading branch information
casella committed Jul 6, 2021
1 parent 18e5725 commit 63588be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OMCompiler/Compiler/Util/Flags.mo
Expand Up @@ -1371,8 +1371,8 @@ constant ConfigFlag LINK_TYPE = CONFIG_FLAG(145, "linkType",
NONE(), EXTERNAL(), ENUM_FLAG(1, {("dynamic",1), ("static",2)}),
SOME(STRING_OPTION({"dynamic", "static"})),
Gettext.gettext("Sets the link type for the simulation executable.\n"+
"dynamic: Will link dynamically to build the executable very fast. This is the default."+
"static: Will link statically to avoid dynamic libraries dependencies. Static linking is quite slow.\n"));
"dynamic: libraries are dynamically linked; the executable is built very fast but is not portable because of DLL dependencies.\n"+
"static: libraries are statically linked; the executable is built more slowly but it is portable and dependency-free.\n"));

function getFlags
"Loads the flags with getGlobalRoot. Assumes flags have been loaded."
Expand Down

0 comments on commit 63588be

Please sign in to comment.