chore(profiling): remove -fprof-auto-top to hopefully fix build

This commit is contained in:
Gregor Kleen 2021-02-01 22:45:12 +01:00
parent 90e3965b92
commit e0173908b4
5 changed files with 3 additions and 6 deletions

View File

@ -1,5 +1,5 @@
{-# LANGUAGE UndecidableInstances #-}
{-# OPTIONS_GHC -fno-warn-redundant-constraints -fprof-auto-top #-}
{-# OPTIONS_GHC -fno-warn-redundant-constraints #-}
module Foundation.Authorization
( evalAccess, evalAccessFor, evalAccessWith

View File

@ -1,5 +1,4 @@
{-# LANGUAGE UndecidableInstances #-} -- for `MemcachedKeyFavourites`
{-# OPTIONS_GHC -fprof-auto-top #-}
module Foundation.SiteLayout
( siteLayout', siteLayout

View File

@ -1,4 +1,4 @@
{-# OPTIONS_GHC -O0 -fasm -fprof-auto-top #-}
{-# OPTIONS_GHC -O0 -fasm #-}
module Foundation.Yesod.Middleware
( yesodMiddleware

View File

@ -1,5 +1,3 @@
{-# OPTIONS_GHC -fprof-auto-top #-}
module Jobs
( module Types
, module Jobs.Queue

View File

@ -9,7 +9,7 @@ in pkgs.haskell.lib.buildStackProject {
inherit (haskellPackages) stack;
name = "stackenv";
buildInputs = (with pkgs;
[ postgresql zlib libsodium gmp
[ postgresql zlib libsodium gmp llvm_9
]) ++ (with haskellPackages;
[ yesod-bin happy alex
]);