Use -split-sections in creating release binary.

This is supposed to reduce executable size.
This commit is contained in:
John MacFarlane 2021-03-01 10:06:10 -08:00
parent 7f1b933aaa
commit 26c496d936
3 changed files with 4 additions and 4 deletions

View file

@ -20,10 +20,10 @@ jobs:
command: stack --no-terminal setup
- run:
name: Run tests
command: stack --no-terminal test
command: stack --no-terminal test --ghc-options=-split-sections
- run:
name: Install executable
command: stack --no-terminal install
command: stack --no-terminal install --ghc-options=-split-sections
- run:
name: Create artifacts
command: |

View file

@ -31,7 +31,7 @@ jobs:
versions:
- osarch: "windows-x86_64"
arch: "x64"
stack_opts: "-j1"
stack_opts: "-j1 --ghc-options=-split-sections"
steps:
- uses: actions/checkout@v1

View file

@ -16,7 +16,7 @@ ghc --version
cabal v2-update
cabal v2-clean
cabal v2-configure --enable-tests -f-export-dynamic -fembed_data_files --enable-executable-static --ghc-options '-optc-Os -optl=-pthread' pandoc
cabal v2-configure --enable-tests -f-export-dynamic -fembed_data_files --enable-executable-static --ghc-options '-split-sections -optc-Os -optl=-pthread' pandoc
cabal v2-build
cabal v2-test -j1
for f in $(find dist-newstyle -name 'pandoc' -type f -perm /400); do cp $f /artifacts/; done