Skip to content
Snippets Groups Projects
  1. Jun 19, 2016
  2. Jun 17, 2016
  3. Feb 12, 2016
  4. Oct 29, 2015
  5. Oct 28, 2015
  6. Dec 30, 2014
  7. Nov 19, 2014
  8. Oct 28, 2014
  9. Oct 25, 2014
  10. Oct 24, 2014
    • Reid Kleckner's avatar
      Fix windows-cross.c test on my machine · 19085c84
      Reid Kleckner authored
      I suspect it will need a custom sysroot to pass reliably elsewhere.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@220576 91177308-0d34-0410-b5e6-96231b3b80d8
      19085c84
    • Saleem Abdulrasool's avatar
      Driver: add CrossWindowsToolChain · 7df40694
      Saleem Abdulrasool authored
      This is a very basic toolchain.  It supports cross-compiling Windows (primarily
      inspired by the WoA target).  It is meant to use clang with the LLVM IAS and a
      binutils ld-compatible interface for the linker (eventually to be lld).  It does
      not perform any "standard" GCC lookup, nor does it perform any special
      adjustments given that it is expected to be used in an environment where the
      user is using MSVCRT (and as such Visual Studio headers) and the Windows SDK.
      The primary runtime library is expected to be compiler-rt and the C++
      implementation to be libc++.
      
      It also expects that a sysroot has been setup given the usual Unix semantics
      (standard C headers in /usr/include, all the import libraries available in
      /usr/lib).  It also expects that an entry point stub is present in /usr/lib
      (crtbegin.obj for executables, crtbeginS.obj for shared libraries).
      
      The entry point stub is responsible for running any GNU constructors.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@220546 91177308-0d34-0410-b5e6-96231b3b80d8
      7df40694
Loading