From f2c49aebc732393cd1952b296f2b31f019e023da Mon Sep 17 00:00:00 2001 From: Changsheng Date: Sat, 18 Mar 2017 19:02:01 -0400 Subject: [PATCH] Add nasm. Update gcc to 6.3.0 (#1382) * Add nasm * Update gcc to 6.3.0 --- gcc.json | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/gcc.json b/gcc.json index c72edf7a78..f8b4cec6b3 100644 --- a/gcc.json +++ b/gcc.json @@ -1,17 +1,20 @@ { - "homepage": "http://mingw-w64.sourceforge.net/", - "version": "4.8.1", + "homepage": "http://mingw-w64.org", + "version": "6.3.0", + "license": "GPL3", "architecture": { "64bit": { - "url": "https://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.8.1/64-bit/threads-posix/seh/x64-4.8.1-release-posix-seh-rev5.7z", - "hash": "bb8bd0fe45da3ed9412acd5e432f28c8dccc3b559610e43980760314a283168f", + "url": "https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/6.3.0/threads-posix/seh/x86_64-6.3.0-release-posix-seh-rt_v5-rev1.7z", + "hash": "2d0e72340ffa14916d4469db25c37889e477f8f1f49ba4f77155830ddc1dca89", "extract_dir": "mingw64" }, "32bit": { - "url": "https://sourceforge.net/projects/mingwbuilds/files/host-windows/releases/4.8.1/32-bit/threads-posix/sjlj/x32-4.8.1-release-posix-sjlj-rev5.7z", - "hash": "e438ca54e1df9c45b16898d8e9ee941295ad8cde6f20330294e5be4794988582", + "url": "https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/6.3.0/threads-posix/dwarf/i686-6.3.0-release-posix-dwarf-rt_v5-rev1.7z", + "hash": "8f7381e8ed61c438d36d33ae2f514a7ca8065c44dcf6801847fd425f71a9ee1d", "extract_dir": "mingw32" } }, - "env_add_path": "bin" + "env_add_path": "bin", + "notes": "The 64bit version is built with Structured Exception Handling (SEH), the 32bit is built with DWARF. +Both 64bit and 32bit support Posix threading model" }