1. 01 10月, 2016 1 次提交
  2. 23 8月, 2016 1 次提交
  3. 13 8月, 2016 1 次提交
  4. 31 7月, 2016 1 次提交
  5. 21 7月, 2016 1 次提交
    • A
      mk: Stop using cmake for compiler-rt · ee6011fc
      Alex Crichton 提交于
      The compiler-rt build system has been a never ending cause of pain for Rust
      unfortunately:
      
      * The build system is very difficult to invoke and configure to only build
        compiler-rt, especially across platforms.
      * The standard build system doesn't actually do what we want, not working for
        some of our platforms and requiring a significant number of patches on our end
        which are difficult to apply when updating compiler-rt.
      * Compiling compiler-rt requires LLVM to be compiled, which... is a big
        dependency! This also means that over time compiler-rt is not guaranteed to
        build against older versions of LLVM (or newer versions), and we often want to
        work with multiple versions of LLVM simultaneously.
      
      The makefiles and rustbuild already know how to compile C code, the code here is
      far from the *only* C code we're compiling. This patch jettisons all logic to
      work with compiler-rt's build system and just goes straight to the source. We
      just list all files manually (copied from compiler-rt's
      lib/builtins/CMakeLists.txt) and compile them into an archive.
      
      It's likely that this means we'll fail to pick up new files when we upgrade
      compiler-rt, but that seems like a much less significant cost to pay than what
      we're currently paying.
      
      cc #34400, first steps towards that
      ee6011fc
  6. 12 4月, 2016 1 次提交
  7. 10 4月, 2016 1 次提交
  8. 07 4月, 2016 1 次提交
  9. 29 2月, 2016 1 次提交
    • A
      rustbuild: Update dependencies · 15b4a8c2
      Alex Crichton 提交于
      * Fixes a warning with libc
      * Brings in some new flag updates for various platforms through gcc-rs
      * Otherwise routine updates here/there
      15b4a8c2
  10. 12 2月, 2016 1 次提交
    • A
      Add a Cargo-based build system · 046e6874
      Alex Crichton 提交于
      This commit is the start of a series of commits which start to replace the
      makefiles with a Cargo-based build system. The aim is not to remove the
      makefiles entirely just yet but rather just replace the portions that invoke the
      compiler to do the bootstrap. This commit specifically adds enough support to
      perform the bootstrap (and all the cross compilation within) along with
      generating documentation.
      
      More commits will follow up in this series to actually wire up the makefiles to
      call this build system, so stay tuned!
      046e6874