Skip to content

Commit

Permalink
Fix static builds
Browse files Browse the repository at this point in the history
  • Loading branch information
tchoutri committed Jul 4, 2024
1 parent b14c6f1 commit 8a6b186
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cabal.static.project
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import: ./cabal.release.project
executable-static: true

package confer
ghc-options: -static
ghc-options: -static -optl-static -split-sections
ld-options: -static -pthread
2 changes: 1 addition & 1 deletion src/Confer/CLI/Cmd/Deploy.hs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module Confer.CLI.Cmd.Deploy (deploy) where

import Control.Monad
import Control.Placeholder

import Data.Text.Display
import Data.Text.IO qualified as Text
import Data.Vector (Vector)
Expand Down
2 changes: 1 addition & 1 deletion src/Confer/Config/ConfigFile.hs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Confer.Config.ConfigFile
) where

import Control.Monad (when)
import Control.Placeholder

import Data.Text qualified as Text
import Data.Text.Display
import Data.Text.IO qualified as Text
Expand Down
2 changes: 1 addition & 1 deletion src/Confer/Config/Evaluator.hs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module Confer.Config.Evaluator
) where

import Control.Monad (void, when)
import Control.Placeholder

import Data.Maybe (isNothing)
import Data.Text (Text)
import Data.Text qualified as Text
Expand Down

0 comments on commit 8a6b186

Please sign in to comment.