Skip to content
Snippets Groups Projects
Unverified Commit 37f67421 authored by hamishmack's avatar hamishmack
Browse files

Fix use of NumJobs

From `Cabal/src/Distribution/Types/ParStrat.hs`

```
data ParStratX sem
  = -- | Compile in parallel with the given number of jobs (`-jN` or `-j`).
    NumJobs (Maybe Int)
  ...
```

However in `Cabal/src/Distribution/Simple/Program/GHC.hs` show is applied to the `Maybe Int` and we get errors like:

```
ghc-9.9.20230901: on the commandline: malformed integer argument in -jJust 4
```

This change should correct the behavior in `Simple/Program/GHC.hs` to match the comment in `Types/ParStrat.hs`.
parent 30bb1109
No related branches found
No related tags found
No related merge requests found
......@@ -701,7 +701,7 @@ renderGhcOptions comp _platform@(Platform _arch os) opts
if jsemSupported comp
then ["-jsem " ++ name]
else []
Flag (NumJobs n) -> ["-j" ++ show n]
Flag (NumJobs n) -> ["-j" ++ maybe "" show n]
else []
, --------------------
-- Creating libraries
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment