Skip to content
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

add new options for ghc 9.12 #10468

Merged
merged 1 commit into from
Oct 26, 2024
Merged

Commits on Oct 26, 2024

  1. add new non-compile-affecting options for ghc 9.12

    - ghc 9.12 adds several new command line options, divided between
      `LANGUAGE`s (already added), warnings, new preprocessor control options,
      and compilation control options. Two options needed to be added to the
      list of options requiring `Int` parameters.
    
      The new options, excluding warning and language options, are:
    
      * `-fexpose-overloaded-unfoldings`
      * `-fmax-forced-spec-args=N`
      * `-fno-expose-overloaded-unfoldings`
      * `-fno-object-determinism`
      * `-fobject-determinism`
      * `-fwrite-if-compression=N`
      * `-optCmmP…`
      * `-optJSP…`
      * `-pgmCmmP`
      * `-pgmJSP`
    
      As they all affect compilation and store hashes, the only necessary
      change was to list the two numeric options so they will be parsed
      correctly. To the best of our understanding, `-pgm*` and `-opt*`
      options are already handled as a group.
    geekosaur authored and Mikolaj committed Oct 26, 2024
    Configuration menu
    Copy the full SHA
    6578978 View commit details
    Browse the repository at this point in the history