You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes I know I'm on thin ice with allow-newer. But sometimes it does the job. Here it doesn't:
cabal install accelerate-fft --flags="-llvm-ptx" --allow-newer
...
Building library for accelerate-llvm-1.2.0.0..
...
[47 of 60] Compiling Data.Array.Accelerate.LLVM.CodeGen.Downcast ( src/Data/Array/Accelerate/LLVM/CodeGen/Downcast.hs
, dist/build/Data/Array/Accelerate/LLVM/CodeGen/Downcast.o )
src/Data/Array/Accelerate/LLVM/CodeGen/Downcast.hs:378:32: error:
Not in scope: type constructor or class ‘L.MetadataNode’
Perhaps you meant one of these:
‘L.MetadataNodeID’ (imported from LLVM.AST.Operand),
‘L.Metadata’ (imported from LLVM.AST.Operand)
...
and many similar errors.
I guess it's got nothing to do with ghc-8.6. per se, but with the version of llvm-hs[-pure] that is implied.
I found that MetadataNode was present in llvm-hs-pure 6.0.0, but vanished in 6.1.0, cf. https://hackage.haskell.org/package/llvm-hs-pure-6.1.0/changelog
The text was updated successfully, but these errors were encountered:
Yes I know I'm on thin ice with
allow-newer
. But sometimes it does the job. Here it doesn't:and many similar errors.
I guess it's got nothing to do with ghc-8.6. per se, but with the version of
llvm-hs[-pure]
that is implied.I found that
MetadataNode
was present inllvm-hs-pure
6.0.0, but vanished in 6.1.0, cf.https://hackage.haskell.org/package/llvm-hs-pure-6.1.0/changelog
The text was updated successfully, but these errors were encountered: