You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We used to have some items in mmtk::util::options::Options that can only be set via environment variables but not the command line, or vice versa. One example is MMTK_THREADS due to MMTk being initialized via lazy_static!. After we introduced MMTKBuilder, this restriction is removed.
Now all options can be set via both environment variables and command line. We may remove the redundant [env_var: true, command_line: true] from the options declaration. e.g. What we have now
We used to have some items in
mmtk::util::options::Options
that can only be set via environment variables but not the command line, or vice versa. One example isMMTK_THREADS
due to MMTk being initialized vialazy_static!
. After we introducedMMTKBuilder
, this restriction is removed.Now all options can be set via both environment variables and command line. We may remove the redundant
[env_var: true, command_line: true]
from the options declaration. e.g. What we have nowwill become
The text was updated successfully, but these errors were encountered: