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 #-} {-# LANGUAGE UndecidableInstances #-}
{-# OPTIONS_GHC -fno-warn-redundant-constraints -fprof-auto-top #-} {-# OPTIONS_GHC -fno-warn-redundant-constraints #-}
module Foundation.Authorization module Foundation.Authorization
( evalAccess, evalAccessFor, evalAccessWith ( evalAccess, evalAccessFor, evalAccessWith

View File

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

View File

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

View File

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

View File

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