197 lines
6.1 KiB
Ruby
197 lines
6.1 KiB
Ruby
class MingwW64 < Formula
|
|
desc "Minimalist GNU for Windows and GCC cross-compilers"
|
|
homepage "https://mingw-w64.org/"
|
|
url "https://downloads.sourceforge.net/project/mingw-w64/mingw-w64/mingw-w64-release/mingw-w64-v5.0.4.tar.bz2"
|
|
sha256 "5527e1f6496841e2bb72f97a184fc79affdcd37972eaa9ebf7a5fd05c31ff803"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 "99643788f39f714277782d585854b426be3a05b3ca4ea6ad976bddf04fad10e2" => :mojave
|
|
sha256 "d8ee55c3d49dab59470fcd0c2d748faca388d65ac6a339b32f55c61bbcaa7563" => :high_sierra
|
|
sha256 "123187cb05418b0dea7fc52ed884d0c29af3794a4729befeed645384816c9d8d" => :sierra
|
|
sha256 "3d17f00fef77e7ca948989413a97955c6628d0dde124ef461d21f6b8528e592c" => :el_capitan
|
|
end
|
|
|
|
option "without-posix", "Compile without posix thread model support"
|
|
|
|
depends_on "gmp"
|
|
depends_on "isl"
|
|
depends_on "libmpc"
|
|
depends_on "mpfr"
|
|
|
|
# Apple's makeinfo is old and has bugs
|
|
depends_on "texinfo" => :build
|
|
|
|
resource "binutils" do
|
|
url "https://ftp.gnu.org/gnu/binutils/binutils-2.31.1.tar.gz"
|
|
mirror "https://ftpmirror.gnu.org/binutils/binutils-2.31.1.tar.gz"
|
|
sha256 "e88f8d36bd0a75d3765a4ad088d819e35f8d7ac6288049780e2fefcad18dde88"
|
|
end
|
|
|
|
resource "gcc" do
|
|
url "https://ftp.gnu.org/gnu/gcc/gcc-8.2.0/gcc-8.2.0.tar.xz"
|
|
mirror "https://ftpmirror.gnu.org/gcc/gcc-8.2.0/gcc-8.2.0.tar.xz"
|
|
sha256 "196c3c04ba2613f893283977e6011b2345d1cd1af9abeac58e916b1aab3e0080"
|
|
|
|
# isl 0.20 compatibility, remove in next GCC version
|
|
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86724
|
|
patch :DATA
|
|
end
|
|
|
|
def target_archs
|
|
["i686", "x86_64"].freeze
|
|
end
|
|
|
|
def install
|
|
target_archs.each do |arch|
|
|
arch_dir = "#{prefix}/toolchain-#{arch}"
|
|
target = "#{arch}-w64-mingw32"
|
|
|
|
resource("binutils").stage do
|
|
args = %W[
|
|
--target=#{target}
|
|
--prefix=#{arch_dir}
|
|
--enable-targets=#{target}
|
|
--disable-multilib
|
|
]
|
|
mkdir "build-#{arch}" do
|
|
system "../configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
# Put the newly built binutils into our PATH
|
|
ENV.prepend_path "PATH", "#{arch_dir}/bin"
|
|
|
|
mkdir "mingw-w64-headers/build-#{arch}" do
|
|
system "../configure", "--host=#{target}", "--prefix=#{arch_dir}/#{target}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
# Create a mingw symlink, expected by GCC
|
|
ln_s "#{arch_dir}/#{target}", "#{arch_dir}/mingw"
|
|
|
|
# Build the GCC compiler
|
|
resource("gcc").stage buildpath/"gcc"
|
|
args = %W[
|
|
--target=#{target}
|
|
--prefix=#{arch_dir}
|
|
--with-bugurl=https://github.com/Homebrew/homebrew-core/issues
|
|
--enable-languages=c,c++,fortran
|
|
--with-ld=#{arch_dir}/bin/#{target}-ld
|
|
--with-as=#{arch_dir}/bin/#{target}-as
|
|
--with-gmp=#{Formula["gmp"].opt_prefix}
|
|
--with-mpfr=#{Formula["mpfr"].opt_prefix}
|
|
--with-mpc=#{Formula["libmpc"].opt_prefix}
|
|
--with-isl=#{Formula["isl"].opt_prefix}
|
|
--disable-multilib
|
|
]
|
|
if build.with? "posix"
|
|
args << "--enable-threads=posix"
|
|
else
|
|
args << "--enable-threads=win32"
|
|
end
|
|
|
|
mkdir "#{buildpath}/gcc/build-#{arch}" do
|
|
system "../configure", *args
|
|
system "make", "all-gcc"
|
|
system "make", "install-gcc"
|
|
end
|
|
|
|
# Build the mingw-w64 runtime
|
|
args = %W[
|
|
CC=#{target}-gcc
|
|
CXX=#{target}-g++
|
|
CPP=#{target}-cpp
|
|
--host=#{target}
|
|
--prefix=#{arch_dir}/#{target}
|
|
]
|
|
|
|
if arch == "i686"
|
|
args << "--enable-lib32" << "--disable-lib64"
|
|
elsif arch == "x86_64"
|
|
args << "--disable-lib32" << "--enable-lib64"
|
|
end
|
|
|
|
mkdir "mingw-w64-crt/build-#{arch}" do
|
|
system "../configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
# Build the winpthreads library
|
|
# we need to build this prior to the
|
|
# GCC runtime libraries, to have `-lpthread`
|
|
# available, for `--enable-threads=posix`
|
|
args = %W[
|
|
CC=#{target}-gcc
|
|
CXX=#{target}-g++
|
|
CPP=#{target}-cpp
|
|
--host=#{target}
|
|
--prefix=#{arch_dir}/#{target}
|
|
]
|
|
mkdir "mingw-w64-libraries/winpthreads/build-#{arch}" do
|
|
system "../configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
# Finish building GCC (runtime libraries)
|
|
chdir "#{buildpath}/gcc/build-#{arch}" do
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
# Symlinks all binaries into place
|
|
mkdir_p bin
|
|
Dir["#{arch_dir}/bin/*"].each { |f| ln_s f, bin }
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"hello.c").write <<~EOS
|
|
#include <stdio.h>
|
|
#include <windows.h>
|
|
int main() { puts("Hello world!");
|
|
MessageBox(NULL, TEXT("Hello GUI!"), TEXT("HelloMsg"), 0); return 0; }
|
|
EOS
|
|
(testpath/"hello.cc").write <<~EOS
|
|
#include <iostream>
|
|
int main() { std::cout << "Hello, world!" << std::endl; return 0; }
|
|
EOS
|
|
(testpath/"hello.f90").write <<~EOS
|
|
program hello ; print *, "Hello, world!" ; end program hello
|
|
EOS
|
|
|
|
ENV["LC_ALL"] = "C"
|
|
target_archs.each do |arch|
|
|
target = "#{arch}-w64-mingw32"
|
|
outarch = (arch == "i686") ? "i386" : "x86-64"
|
|
|
|
system "#{bin}/#{target}-gcc", "-o", "test.exe", "hello.c"
|
|
assert_match "file format pei-#{outarch}", shell_output("#{bin}/#{target}-objdump -a test.exe")
|
|
|
|
system "#{bin}/#{target}-g++", "-o", "test.exe", "hello.cc"
|
|
assert_match "file format pei-#{outarch}", shell_output("#{bin}/#{target}-objdump -a test.exe")
|
|
|
|
system "#{bin}/#{target}-gfortran", "-o", "test.exe", "hello.f90"
|
|
assert_match "file format pei-#{outarch}", shell_output("#{bin}/#{target}-objdump -a test.exe")
|
|
end
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/gcc/graphite.h b/gcc/graphite.h
|
|
index 4e0e58c..be0a22b 100644
|
|
--- a/gcc/graphite.h
|
|
+++ b/gcc/graphite.h
|
|
@@ -37,6 +37,8 @@ along with GCC; see the file COPYING3. If not see
|
|
#include <isl/schedule.h>
|
|
#include <isl/ast_build.h>
|
|
#include <isl/schedule_node.h>
|
|
+#include <isl/id.h>
|
|
+#include <isl/space.h>
|
|
|
|
typedef struct poly_dr *poly_dr_p;
|