Difference between revisions of "Building LDC on MinGW x86"

From D Wiki
Jump to: navigation, search
m (LDC category)
m (Add MSYS Makefiles generator.)
Line 15: Line 15:
 
#* Fetch the LLVM 3.3 source: Either use the [http://llvm.org/releases/download.html#3.3 release tarball] (as soon as the release is officially out) or checkout the ''release_33'' branch of the SVN/Git (http://llvm.org/git/llvm.git) repository.
 
#* Fetch the LLVM 3.3 source: Either use the [http://llvm.org/releases/download.html#3.3 release tarball] (as soon as the release is officially out) or checkout the ''release_33'' branch of the SVN/Git (http://llvm.org/git/llvm.git) repository.
 
#* Build and install it: <tt>cd /n/Build/Work/llvm-3.3-release && cmake /c/Build/Source/llvm/ -G Ninja -DLLVM_TARGETS_TO_BUILD=X86 -DCMAKE_INSTALL_PREFIX=/n/Build/Intermediate/llvm-3.3-release -DCMAKE_BUILD_TYPE=Release && ninja && ninja install</tt>.
 
#* Build and install it: <tt>cd /n/Build/Work/llvm-3.3-release && cmake /c/Build/Source/llvm/ -G Ninja -DLLVM_TARGETS_TO_BUILD=X86 -DCMAKE_INSTALL_PREFIX=/n/Build/Intermediate/llvm-3.3-release -DCMAKE_BUILD_TYPE=Release && ninja && ninja install</tt>.
 +
#* If you do not want to use Ninja then use <tt>MSYS Makefiles</tt> as CMake generator.
 
# Fetch the [http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz ''libconfig++'' tarball] and install it (<tt>./configure; make; make install</tt>). Don't try an out-of-source build, directory seperator issues tend to break the Makefiles.
 
# Fetch the [http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz ''libconfig++'' tarball] and install it (<tt>./configure; make; make install</tt>). Don't try an out-of-source build, directory seperator issues tend to break the Makefiles.
 
# LDC:
 
# LDC:

Revision as of 22:56, 30 November 2013

This page is a step-by-step guide to setting up a development environment for LDC based on MinGW.

The resulting compiler will create 32 bit executables. Due to the different exception handling models, it is not currently possible to use LDC to target 64 bit Windows/MinGW. Running the 32 bit compiler on a 64 bit Windows system is entirely possible, however.

Note that the below instructions refer to precise package versions and file system paths. The intention behind this is to record a known-good configuration. Newer releases or differing paths will probably work as well if you know what you are doing.

  1. Get a recent build of MinGW-w64 for i686 (i.e. 32 bit) targets, with DWARF2-style exception handling. A fresh build is required because support for the SECREL32 relocation type needed to implement TLS was only recently added to GNU as, and TLS support in the MinGW runtime was broken:
  2. Install MSYS and the usual tools like Git:
    • Download msys+7za+wget+svn+git+mercurial+cvs-rev13.7z from the MinGW-Builds project, extract it to C:\MinGW, add C:\MinGW\ /mingw to C:\MinGW\msys\etc\fstab.
    • For your own sanity, you might want to use something like Console2 to handle the MinGW shell (set the shell to C:\MinGW\msys\bin\bash.exe --login -i).
  3. Install CMake 2.8.11 using the Windows installer from http://www.cmake.org/cmake/resources/software.html, making sure it is on your MSYS $PATH (e.g. by letting the installer put it on your %PATH%).
    • Optional: Install Ninja somewhere on your MSYS $PATH for shorter compile times, especially on incremental builds. If you don't want to use Ninja, simply change the CMake generator to Makefiles (-G"MSYS Makefiles") and use make (install) instead of the ninja commands.
  4. LLVM:
    • Fetch the LLVM 3.3 source: Either use the release tarball (as soon as the release is officially out) or checkout the release_33 branch of the SVN/Git (http://llvm.org/git/llvm.git) repository.
    • Build and install it: cd /n/Build/Work/llvm-3.3-release && cmake /c/Build/Source/llvm/ -G Ninja -DLLVM_TARGETS_TO_BUILD=X86 -DCMAKE_INSTALL_PREFIX=/n/Build/Intermediate/llvm-3.3-release -DCMAKE_BUILD_TYPE=Release && ninja && ninja install.
    • If you do not want to use Ninja then use MSYS Makefiles as CMake generator.
  5. Fetch the libconfig++ tarball and install it (./configure; make; make install). Don't try an out-of-source build, directory seperator issues tend to break the Makefiles.
  6. LDC:
    • Clone the repository: git clone --recursive https://github.com/ldc-developers/ldc.git
    • Build it: cmake /c/Build/Source/ldc/ -G Ninja -DLLVM_ROOT_DIR='/n/Build/Intermediate/llvm-3.3-release' -DLIBCONFIG++_INCLUDE_DIR=/local/include -DLIBCONFIG++_LIBRARY=/local/lib/libconfig++.dll.a -DCMAKE_BUILD_TYPE=Release && ninja
  7. Additional dependencies:
    • You will probably want to install libcurl in order to use std.net.curl (including as part of the test suite): Just fetch the latest source release, extract it, and run ./configure --prefix=/mingw && make && make install. Installing to /mingw is not strictly necessary, but will save you from manually specifying the path anywhere.