about summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc/9.4.5.nix
diff options
context:
space:
mode:
authorsternenseemann <sternenseemann@systemli.org>2023-06-24 11:35:23 +0200
committersternenseemann <sternenseemann@systemli.org>2023-07-04 15:29:40 +0200
commit8aeb0de93dd371d4e578f1d4e21c4ddf8a8460e0 (patch)
tree24e3761a0f938487b69be7417fc952d530dd506c /pkgs/development/compilers/ghc/9.4.5.nix
parent580181157de59194e8e3b4b5551dc7b660e5284d (diff)
haskell: re-enable profiling on aarch64
The main problem was GHC exceeding the Hydra output limit with profiling
libs on aarch64-linux which made us disable the feature. Nowadays the
limit is 3GB, the GHC output is a bit over 2GB, so easily under the
limit.

aarch64-darwin uses a different codegen backend and was never really
affected by the problem: Its output with profiling enabled is around
1.6GB.

Consequently we can enable profiling for all platforms again, as we have
no output size issues for those we build on Hydra.

Thanks to flokli for helping me track down these up to date numbers.
Diffstat (limited to 'pkgs/development/compilers/ghc/9.4.5.nix')
-rw-r--r--pkgs/development/compilers/ghc/9.4.5.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/compilers/ghc/9.4.5.nix b/pkgs/development/compilers/ghc/9.4.5.nix
index 19af148c9c880..ec2a00c1c2299 100644
--- a/pkgs/development/compilers/ghc/9.4.5.nix
+++ b/pkgs/development/compilers/ghc/9.4.5.nix
@@ -32,8 +32,7 @@
 , # If enabled, use -fPIC when compiling static libs.
   enableRelocatedStaticLibs ? stdenv.targetPlatform != stdenv.hostPlatform
 
-  # aarch64 outputs otherwise exceed 2GB limit
-, enableProfiledLibs ? !stdenv.targetPlatform.isAarch64
+, enableProfiledLibs ? true
 
 , # Whether to build dynamic libs for the standard library (on the target
   # platform). Static libs are always built.