Difference between revisions of "Building MINGW-w64"

From ReactOS Wiki
Jump to: navigation, search
(Building)
Line 28: Line 28:
 
* GMP (version [ftp://ftp.gmplib.org/pub/gmp-5.0.2/gmp-5.0.2.tar.bz2 5.0.2]) -> /src/gmp
 
* GMP (version [ftp://ftp.gmplib.org/pub/gmp-5.0.2/gmp-5.0.2.tar.bz2 5.0.2]) -> /src/gmp
 
* MPC (version [http://www.multiprecision.org/mpc/download/mpc-0.9.tar.gz 0.9]) -> /src/mpc
 
* MPC (version [http://www.multiprecision.org/mpc/download/mpc-0.9.tar.gz 0.9]) -> /src/mpc
* PPL (version [ftp://ftp.cs.unipr.it/pub/ppl/releases/0.11.2/ppl-0.11.2.tar.bz2 0.11.2]) -> /src/ppl
 
* CLOOG (version [ftp://gcc.gnu.org/pub/gcc/infrastructure/cloog-0.16.2.tar.gz 0.16.2]) -> /src/cloog
 
  
 
= Note =
 
= Note =
Line 98: Line 96:
 
  ../../src/mpc/configure --prefix=/support --host=i686-w64-mingw32 --build=i686-w64-mingw32 --with-gmp=/support --with-mpfr=/support
 
  ../../src/mpc/configure --prefix=/support --host=i686-w64-mingw32 --build=i686-w64-mingw32 --with-gmp=/support --with-mpfr=/support
 
   --disable-shared
 
   --disable-shared
 
Now build the whole stuff.
 
make
 
 
Finally install it into the designated directory.
 
make install
 
 
== Building PPL ==
 
 
Create a build subdirectory for ppl:
 
cd build
 
mkdir ppl
 
cd ppl
 
 
From the build directory run the ppl configure script:
 
 
../../src/ppl/configure --prefix=/support --host=i686-w64-mingw32 --build=i686-w64-mingw32 --with-libgmp-prefix=/support --disable-shared
 
 
Now build the whole stuff.
 
make
 
 
Finally install it into the designated directory.
 
make install
 
 
== Building CLOOG ==
 
 
Create a build subdirectory for cloog:
 
cd build
 
mkdir cloog
 
cd cloog
 
 
From the build directory run the cloog configure script:
 
 
../../src/cloog/configure --prefix=/support --host=i686-w64-mingw32 --build=i686-w64-mingw32 --with-gmp=/support --with-ppl=/support
 
  --disable-shared --with-host-libstdcxx="-lstdc++ -lsupc++"
 
  
 
Now build the whole stuff.
 
Now build the whole stuff.
Line 173: Line 136:
 
64 bit:
 
64 bit:
 
  ../../src/gcc/configure --prefix=/RosBE64 --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=x86_64-w64-mingw32
 
  ../../src/gcc/configure --prefix=/RosBE64 --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=x86_64-w64-mingw32
   --with-gmp=/support --with-mpfr=/support --with-mpc=/support --with-ppl=/support --with-cloog=/support
+
   --with-gmp=/support --with-mpfr=/support --with-mpc=/support --with-pkgversion="RosBE-Windows"
  --with-pkgversion="RosBE-Windows" --enable-languages=c,c++ --enable-checking=release --enable-version-specific-runtime-libs
+
  --enable-languages=c,c++ --enable-checking=release --enable-version-specific-runtime-libs
 
   --disable-win32-registry --disable-shared --disable-nls --disable-werror --disable-multilib --with-sysroot=/RosBE64
 
   --disable-win32-registry --disable-shared --disable-nls --disable-werror --disable-multilib --with-sysroot=/RosBE64
   --enable-cloog-backend=isl --with-host-libstdcxx="-lstdc++ -lsupc++"
+
   --with-host-libstdcxx="-lstdc++ -lsupc++"
  
 
32 bit:
 
32 bit:
 
  ../../src/gcc/configure --prefix=/RosBE64 --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32
 
  ../../src/gcc/configure --prefix=/RosBE64 --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32
   --with-gmp=/support --with-mpfr=/support --with-mpc=/support --with-ppl=/support --with-cloog=/support
+
   --with-gmp=/support --with-mpfr=/support --with-mpc=/support --with-pkgversion="RosBE-Windows"
  --with-pkgversion="RosBE-Windows" --enable-languages=c,c++ --enable-checking=release --enable-version-specific-runtime-libs
+
  --enable-languages=c,c++ --enable-checking=release --enable-version-specific-runtime-libs
 
   --disable-win32-registry --disable-shared --disable-nls --disable-werror --disable-multilib --with-sysroot=/RosBE64
 
   --disable-win32-registry --disable-shared --disable-nls --disable-werror --disable-multilib --with-sysroot=/RosBE64
   --enable-cloog-backend=isl --with-host-libstdcxx="-lstdc++ -lsupc++"
+
   --with-host-libstdcxx="-lstdc++ -lsupc++"
  
 
Compile the gcc-core
 
Compile the gcc-core

Revision as of 19:26, 23 October 2011

... for idiots. This guide is provided for those who have no clue how to compile gcc, but still want to do it. It's a reference, just follow the steps and you get what you want. There's no support for special wishes ;-)

Setting up the build environment

Download and install MSYS. You will need the following packages:

  • MSYS-w64 (version 20110309)
  • make (version 3.82)
  • Recent mingw-w64 32 bit Toolchain (here) Choose a file like: mingw-w32-1.0-bin_i686-mingw_%NEWESTDATE%.zip

Download all packages and extract them into c:\MSYS (or similar).

Additional steps needed are:

  • Go to the bin folder inside msys and copy and rename i686-w64-*.exe to *.exe to make configure happy
  • Delete dlfcn.h in every location.
  • DONT FORGET the postinstall script

Getting the sources

Download all the sources into subfolders of /src

  • MPFR (version 3.0.1) -> /src/mpfr
  • GMP (version 5.0.2) -> /src/gmp
  • MPC (version 0.9) -> /src/mpc

Note

Copy the src/mingw-w64/mingw-w64-headers/include directory to /RosBE64/mingw and to /RosBE64/x86_64-w64-mingw32 (64 bit) or /RosBE64/i686-w64-mingw32 (32 bit).

Patching the sources

You need to apply 2 patches (Kudos go to Kai Tietz from mingw-w64):

Building

Optionally set buildflags:

64 bit:

export CFLAGS="-g0 -O2 -pipe -Wl,-S"
export CXXFLAGS="-g0 -O2 -pipe -Wl,-S"

32 bit:

export CFLAGS="-g0 -O2 -pipe -Wl,-S -march=pentium -mtune=i686"
export CXXFLAGS="-g0 -O2 -pipe -Wl,-S -march=pentium -march=i686"

Building GMP

Create a build subdirectory for gmp:

cd build
mkdir gmp
cd gmp

From the build directory run the gmp configure script:

../../src/gmp/configure --prefix=/support --host=i686-w64-mingw32 --build=i686-w64-mingw32 --enable-cxx --disable-shared

Now build the whole stuff.

make CPPFLAGS="-fexceptions"

Finally install it into the designated directory.

make install

Building MPFR

Create a build subdirectory for mpfr:

cd build
mkdir mpfr
cd mpfr

From the build directory run the mpfr configure script:

../../src/mpfr/configure --prefix=/support --host=i686-w64-mingw32 --build=i686-w64-mingw32 --with-gmp=/support --disable-shared

Now build the whole stuff.

make

Finally install it into the designated directory.

make install

Building MPC

Create a build subdirectory for mpc:

cd build
mkdir mpc
cd mpc

From the build directory run the mpc configure script:

../../src/mpc/configure --prefix=/support --host=i686-w64-mingw32 --build=i686-w64-mingw32 --with-gmp=/support --with-mpfr=/support
 --disable-shared

Now build the whole stuff.

make

Finally install it into the designated directory.

make install

Building binutils

Create a build subdirectory for binutils:

cd build
mkdir binutils
cd binutils

From the build directory run the binutils configure script:

64 bit:

../../src/binutils/configure --prefix=/RosBE64 --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=x86_64-w64-mingw32
 --disable-nls --disable-werror --disable-multilib --with-sysroot=/RosBE64

32 bit:

../../src/binutils/configure --prefix=/RosBE64 --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32
 --disable-nls --disable-werror --disable-multilib --with-sysroot=/RosBE64

Now build the whole stuff.

make

Finally install it into the designated directory.

make install

Building gcc-core

Emter into the build directory:

cd ..
mkdir gcc
cd gcc

Now run the configure script:

64 bit:

../../src/gcc/configure --prefix=/RosBE64 --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=x86_64-w64-mingw32
 --with-gmp=/support --with-mpfr=/support --with-mpc=/support --with-pkgversion="RosBE-Windows"
 --enable-languages=c,c++ --enable-checking=release --enable-version-specific-runtime-libs
 --disable-win32-registry --disable-shared --disable-nls --disable-werror --disable-multilib --with-sysroot=/RosBE64
 --with-host-libstdcxx="-lstdc++ -lsupc++"

32 bit:

../../src/gcc/configure --prefix=/RosBE64 --host=i686-w64-mingw32 --build=i686-w64-mingw32 --target=i686-w64-mingw32
 --with-gmp=/support --with-mpfr=/support --with-mpc=/support  --with-pkgversion="RosBE-Windows"
 --enable-languages=c,c++ --enable-checking=release --enable-version-specific-runtime-libs
 --disable-win32-registry --disable-shared --disable-nls --disable-werror --disable-multilib --with-sysroot=/RosBE64
 --with-host-libstdcxx="-lstdc++ -lsupc++"

Compile the gcc-core

make all-gcc

And install it

make install-gcc

Finally add it to the PATH variable.

PATH=$PATH:/RosBE64/bin ; export PATH

Building the crt

Create a build directory.

cd ..
mkdir mingw-w64-crt
cd mingw-w64-crt

Run the configure script

64 bit:

../../src/mingw-w64/mingw-w64-crt/configure --prefix=/RosBE64 --host=x86_64-w64-mingw32 --build=i686-w64-mingw32 --with-sysroot=/RosBE64

32 bit:

../../src/mingw-w64/mingw-w64-crt/configure --prefix=/RosBE64 --host=i686-w64-mingw32 --build=i686-w64-mingw32 --with-sysroot=/RosBE64

Compile

make

And install

make install

Copy the /RosBE64/x86_64-w64-mingw32 (64 bit) or /RosBE64/i686-w64-mingw32 (32 bit) directory to /RosBE64/mingw.

Building the rest of gcc

Enter into the gcc build directory.

cd ..
cd gcc

And compile the rest.

make
make install

Common errors

When compiling crt:

configure: error: Please check if the mingw-w64 header set and the build/host option are set properly.
  • Check if you have copied the mingw-headers/include directory to both /RosBE64/x86_64-w64-mingw32 and /RosBE64/mingw
  • Check if you have set the PATH variable to the new compiler correctly
  • Check if you have installed the new compiler correctly ("make install-gcc")