Skip to content

Commit 629313f

Browse files
authored
Merge pull request #22 from hasufell/jospald/PR/fix-linux-build
Drop -optl-static wrt #21
2 parents 27eb5d0 + 83c550b commit 629313f

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.6.3
2+
3+
* fix linux build by dropping `-optl-static`
4+
15
# 0.6.2
26

37
* package.yaml support for configuring package

package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: tldr
2-
version: '0.6.2'
2+
version: '0.6.3'
33
synopsis: Haskell tldr client
44
description: |
55
Haskell tldr client with support for viewing tldr pages. Has offline
@@ -35,7 +35,7 @@ executables:
3535
when:
3636
- condition: os(linux)
3737
then:
38-
ghc-options: -threaded -optl-static -optl-pthread -rtsopts -with-rtsopts=-N
38+
ghc-options: -threaded -optl-pthread -rtsopts -with-rtsopts=-N
3939
else:
4040
ghc-options: -threaded -rtsopts -with-rtsopts=-N
4141
dependencies:

tldr.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
cabal-version: 1.12
22

3-
-- This file has been generated from package.yaml by hpack version 0.31.2.
3+
-- This file has been generated from package.yaml by hpack version 0.31.0.
44
--
55
-- see: https://github.com/sol/hpack
66
--
7-
-- hash: cd79ac4a87322ef12fabdd8f02bbec3170a2997ceb3dc26a7fc5f105ed21ee35
7+
-- hash: c741992861f52c6d59b995af56d4c4338bac585ac3d78df86eb6d80c12060dce
88

99
name: tldr
10-
version: 0.6.2
10+
version: 0.6.3
1111
synopsis: Haskell tldr client
1212
description: Haskell tldr client with support for viewing tldr pages. Has offline
1313
cache for accessing pages. Visit https://tldr.sh for more details.
@@ -65,7 +65,7 @@ executable tldr
6565
, tldr
6666
, typed-process
6767
if os(linux)
68-
ghc-options: -threaded -optl-static -optl-pthread -rtsopts -with-rtsopts=-N
68+
ghc-options: -threaded -optl-pthread -rtsopts -with-rtsopts=-N
6969
else
7070
ghc-options: -threaded -rtsopts -with-rtsopts=-N
7171
default-language: Haskell2010

0 commit comments

Comments
 (0)