mirror of
https://github.com/haskell/ghcide.git
synced 2024-12-12 13:13:22 +03:00
a538f0644b
There are a couple of cases to handle as seen below. Thanks @jneira for help discovering them all. There used to be linking errors but I no longer see those after the multi-cradle patch Non Nix ========= The table below shows a couple of combinations of cradles and ghcide versions in a non-Nix environment. All the version mismatches are now handled as follows: - "Cannot satisfy package" - `-package-id` flags referencing package versions not available (generally base) - "bad interface" - tried to load an interface file created by a different version of ghc cradle/ghcide | 8.6 | 8.8 | 8.10 --------------|-----|----|--- Cabal 8.6 | success | cannot satisfy package | cannot satisfy package Cabal 8.8 | cannot satisfy package | success | cannot satisfy package Cabal 8.10 | cannot satisfy package | cannot satisfy package | success Stack 8.6 | success | bad-interface | bad-interfac- Stack 8.8 | bad-interface | success | bad-interface Stack 8.10 | bad-interface | bad-interface | success Nix ========= Because Nix redefines the libdir to point at the run-time ghc installation, it's actually much easier to detect a version mismatch: just compare the compile-time and run-time libdirs
19 lines
274 B
YAML
19 lines
274 B
YAML
resolver: nightly-2020-02-13
|
|
compiler: ghc-8.10.1
|
|
allow-newer: true
|
|
packages:
|
|
- .
|
|
extra-deps:
|
|
- haskell-lsp-0.22.0.0
|
|
- haskell-lsp-types-0.22.0.0
|
|
- lsp-test-0.11.0.1
|
|
- ghc-check-0.5.0.1
|
|
- hie-bios-0.5.0
|
|
|
|
# for ghc-8.10
|
|
- Cabal-3.2.0.0
|
|
- lens-4.19.1
|
|
|
|
nix:
|
|
packages: [zlib]
|