Hi Chapel Developers -

PR #6545 makes some changes to how the --log option
works with the Chapel compiler. This option can be
used to get AST dumps of various stages of compilation.
Historically, one would use it like this:

 $ chpl hello.chpl --log=

or, to select only the resolution pass:

 $ chpl hello.chpl --log=R


After PR #6545, one can accomplish the same with the following:

 $ chpl hello.chpl --log

or, to select only the resolution pass:


 $ chpl hello.chpl --log-pass=resolution


or, equivalently

 $ chpl hello.chpl --log-pass=r


If you use this AST logging feature, please have a look at the PR
message linked below for a description of all of the user-facing changes.
In summary, the flags are slightly different and the logging directory is
now removed before new logging information is output.

  https://github.com/chapel-lang/chapel/pull/6545

Thanks,

-michael

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
Chapel-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/chapel-developers

Reply via email to