Opened 7 years ago
Closed 7 years ago
#1532 closed enhancement (fixed)
"lint mode" for csc
| Reported by: | Mario Domenech Goulart | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 5.1 |
| Component: | core tools | Version: | 5.0.0rc1 |
| Keywords: | csc, -M | Cc: | |
| Estimated difficulty: |
Description
I sometimes run csc4 with -AM just to have my moduleless code checked by the scrutinizer. That's particularly useful for code that loads configuration files (in which case having a module would require some trickery to be able to use symbols exported by the module from the configuration file).
Could/should we add the -M option to csc5?
Note: See
TracTickets for help on using
tickets.

CHICKEN 5 has
-mfor-module, which takes the module name as an argument instead of always using"main"like the-Mdid in CHICKEN 4.So, this use case is still supported via
csc -A -m _ x.scm.