inline-c-cpp 0.3.0.1 → 0.3.0.2
raw patch · 1 files changed
+11/−4 lines, 1 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Language.C.Inline.Cpp.Exceptions: instance GHC.Exception.Exception Language.C.Inline.Cpp.Exceptions.CppException
+ Language.C.Inline.Cpp.Exceptions: instance GHC.Exception.Type.Exception Language.C.Inline.Cpp.Exceptions.CppException
- Language.C.Inline.Cpp.Exceptions: CppOtherException :: (Maybe String) -> CppException
+ Language.C.Inline.Cpp.Exceptions: CppOtherException :: Maybe String -> CppException
Files
- inline-c-cpp.cabal +11/−4
inline-c-cpp.cabal view
@@ -1,5 +1,5 @@ name: inline-c-cpp-version: 0.3.0.1+version: 0.3.0.2 synopsis: Lets you embed C++ code into Haskell. description: Utilities to inline C++ code into Haskell using inline-c. See tests for example on how to build.@@ -20,14 +20,17 @@ library exposed-modules: Language.C.Inline.Cpp Language.C.Inline.Cpp.Exceptions- ghc-options: -Wall build-depends: base >=4.7 && <5 , inline-c >= 0.6.1.0 , template-haskell , safe-exceptions hs-source-dirs: src default-language: Haskell2010- cc-options: -Wall -Werror+ ghc-options: -Wall -optc-std=c++11+ if os(darwin)+ -- avoid https://gitlab.haskell.org/ghc/ghc/issues/11829+ ld-options: -Wl,-keep_dwarf_unwind + ghc-options: -pgmc=clang++ test-suite tests type: exitcode-stdio-1.0@@ -39,5 +42,9 @@ , safe-exceptions , hspec default-language: Haskell2010+ ghc-options:+ -optc-std=c++11+ if os(darwin)+ ghc-options: -pgmc=clang++ extra-libraries: stdc++- cc-options: -Wall -Werror+ cc-options: -Wall -Werror -std=c++11