shake-language-c 0.10.0 → 0.10.1
raw patch · 3 files changed
+10/−1 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
CHANGELOG.md view
@@ -1,5 +1,13 @@ # Changelog for shake-language-c +## v0.10.1++* Add support for Linux ARMv7++## v0.10.0++* Add mkConfig function that caches dependencies+ ## v0.9.1 * Fix host architecture detection on Windows 10
shake-language-c.cabal view
@@ -13,7 +13,7 @@ -- limitations under the License. Name: shake-language-c-Version: 0.10.0+Version: 0.10.1 Synopsis: Utilities for cross-compiling with Shake Description: This library provides <http://hackage.haskell.org/package/shake Shake> utilities for cross-compiling @C@, @C++@ and @ObjC@ code for various target platforms. Currently supported target platforms are Android, iOS, Linux, MacOS X, Windows\/MinGW and Google Portable Native Client (PNaCl). Supported host platforms are MacOS X, Linux and Windows. Category: Development
src/Development/Shake/Language/C/Host/Linux.hs view
@@ -30,6 +30,7 @@ "i386" -> X86 I386 "i686" -> X86 I686 "x86_64" -> X86 X86_64+ "armv7l" -> Arm Armv7 _ -> error $ "Unknown host architecture " ++ arch -- | Get host toolchain.