File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ let self =
52
52
, # Wheter to build in NUMA support
53
53
enableNUMA ? true
54
54
55
+ , enableDocs ? false # Choose between --docs=none and --docs=no-sphinx
56
+
55
57
, # What flavour to build. An empty string indicates no
56
58
# specific flavour and falls back to ghc default values.
57
59
ghcFlavour ? lib . optionalString haskell-nix . haskellLib . isCrossTarget (
317
319
+ lib . optionalString enableDWARF "+debug_info"
318
320
+ lib . optionalString ( ( enableNativeBignum && hadrianHasNativeBignumFlavour ) || targetPlatform . isGhcjs ) "+native_bignum"
319
321
+ lib . optionalString targetPlatform . isGhcjs "+no_profiled_libs"
320
- } --docs=no-sphinx -j --verbose"
322
+ } --docs=${ if enableDocs then " no-sphinx" else "none" } -j --verbose"
321
323
# This is needed to prevent $GCC from emitting out of line atomics.
322
324
# Those would then result in __aarch64_ldadd1_sync and others being referenced, which
323
325
# we don't handle in the RTS properly yet. Until we figure out how to _properly_ deal
You can’t perform that action at this time.
0 commit comments