cufft 0.9.0.0 → 0.9.0.1
raw patch · 4 files changed
+14/−5 lines, 4 filessetup-changed
Files
- CHANGELOG.md +5/−0
- Foreign/CUDA/FFT/Stream.chs +1/−1
- Setup.hs +5/−1
- cufft.cabal +3/−3
CHANGELOG.md view
@@ -7,6 +7,10 @@ Policy (PVP)](https://pvp.haskell.org) +## [0.9.0.1] - 2018-10-02+### Fixed+ * Build fix for ghc-8.6+ ## [0.9.0.0] - 2018-03-12 ### Changed * Updated API@@ -18,5 +22,6 @@ * _No change log recorded at this point_ +[0.9.0.1]: https://github.com/tmcdonell/cufft/compare/release/0.9.0.0...v0.9.0.1 [0.9.0.0]: https://github.com/tmcdonell/cufft/compare/release/0.8.0.0...0.9.0.0
Foreign/CUDA/FFT/Stream.chs view
@@ -18,7 +18,7 @@ ) where -- friends-import Foreign.CUDA.Types+import Foreign.CUDA.Driver.Stream ( Stream(..) ) import Foreign.CUDA.FFT.Plan import Foreign.CUDA.FFT.Error import Foreign.CUDA.FFT.Internal.C2HS
Setup.hs view
@@ -150,7 +150,11 @@ -- False -> [| head (componentLibraries (getComponentLocalBuildInfo lbi CLibName)) |] ) #endif- sharedLib = buildDir lbi </> mkSharedLibName cid uid+#if MIN_VERSION_Cabal(2,3,0)+ sharedLib = buildDir lbi </> mkSharedLibName platform cid uid+#else+ sharedLib = buildDir lbi </> mkSharedLibName cid uid+#endif Just extraLibDirs' = extraLibDirs . libBuildInfo <$> library pkg_descr -- updateLibraryRPATHs verbosity platform sharedLib extraLibDirs'
cufft.cabal view
@@ -1,5 +1,5 @@ name: cufft-version: 0.9.0.0+version: 0.9.0.1 synopsis: Haskell bindings for the CUFFT library description: This library contains FFI bindings to the CUFFT library, which provides@@ -15,7 +15,7 @@ license: BSD3 license-file: LICENSE author: Robert Clifton-Everest, Trevor L. McDonell-maintainer: Robert Clifton-Everest <robertce@cse.unsw.edu.au>+maintainer: Trevor L. McDonell <trevor.mcdonell@gmail.com> homepage: https://github.com/robeverest/cufft bug-reports: https://github.com/robeverest/cufft/issues category: Foreign@@ -75,6 +75,6 @@ source-repository this type: git location: https://github.com/robeverest/cufft- tag: 0.9.0.0+ tag: v0.9.0.1 -- vim: nospell