diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-01-20 10:37:16 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-01-20 10:38:17 -0800 |
commit | d9dd9beda1d88de68a7896b46044b43f87a6e447 (patch) | |
tree | 7d9d875854ed9bb0091ca5c44df079e025306d19 | |
parent | 98f0e2053e6e41654f26084d7d5b9dcbaed8931d (diff) | |
download | pandoc-d9dd9beda1d88de68a7896b46044b43f87a6e447.tar.gz |
appveyor.yml : use -fexternal-interpreter.
This is supposed to help with the segfaults that come from
use of TH. See #4021.
-rw-r--r-- | appveyor.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 9401d6666..fb92275e1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,7 +3,8 @@ environment: global: WIXBIN: "c:\\Program Files (x86)\\WiX Toolset v3.11\\bin" STACK_YAML: "c:\\pandoc\\stack.yaml" - STACK_BUILD_OPTS: "-j1 --no-terminal --test --local-bin-path=.\\windows" + STACK_BUILD_OPTS: "-j1 --no-terminal --test --local-bin-path=.\\windows --ghc-options=-fexternal-interpreter" + # see #4201, https://github.com/haskell-tools/haskell-tools/issues/277 matrix: - STACK_VERSION: "windows-i386" STACK_ROOT: "c:\\sr32" |