1. 21 5月, 2020 1 次提交
  2. 23 12月, 2019 1 次提交
  3. 07 8月, 2019 1 次提交
  4. 28 7月, 2019 1 次提交
  5. 11 6月, 2019 1 次提交
    • A
      std: Remove internal definitions of `cfg_if!` macro · 8eb7f36a
      Alex Crichton 提交于
      This is duplicated in a few locations throughout the sysroot to work
      around issues with not exporting a macro in libstd but still wanting it
      available to sysroot crates to define blocks. Nowadays though we can
      simply depend on the `cfg-if` crate on crates.io, allowing us to use it
      from there!
      8eb7f36a
  6. 10 2月, 2019 1 次提交
  7. 04 2月, 2019 1 次提交
  8. 26 1月, 2019 1 次提交
  9. 14 1月, 2019 1 次提交
  10. 26 12月, 2018 1 次提交
  11. 19 12月, 2018 1 次提交
  12. 07 12月, 2018 1 次提交
  13. 28 9月, 2018 1 次提交
  14. 11 9月, 2018 1 次提交
  15. 25 8月, 2018 1 次提交
  16. 09 8月, 2018 1 次提交
  17. 25 7月, 2018 1 次提交
  18. 12 7月, 2018 1 次提交
  19. 09 4月, 2018 1 次提交
  20. 23 1月, 2018 1 次提交
  21. 06 12月, 2017 1 次提交
  22. 20 11月, 2017 1 次提交
    • A
      std: Add a new wasm32-unknown-unknown target · 80ff0f74
      Alex Crichton 提交于
      This commit adds a new target to the compiler: wasm32-unknown-unknown. This
      target is a reimagining of what it looks like to generate WebAssembly code from
      Rust. Instead of using Emscripten which can bring with it a weighty runtime this
      instead is a target which uses only the LLVM backend for WebAssembly and a
      "custom linker" for now which will hopefully one day be direct calls to lld.
      
      Notable features of this target include:
      
      * There is zero runtime footprint. The target assumes nothing exists other than
        the wasm32 instruction set.
      * There is zero toolchain footprint beyond adding the target. No custom linker
        is needed, rustc contains everything.
      * Very small wasm modules can be generated directly from Rust code using this
        target.
      * Most of the standard library is stubbed out to return an error, but anything
        related to allocation works (aka `HashMap`, `Vec`, etc).
      * Naturally, any `#[no_std]` crate should be 100% compatible with this new
        target.
      
      This target is currently somewhat janky due to how linking works. The "linking"
      is currently unconditional whole program LTO (aka LLVM is being used as a
      linker). Naturally that means compiling programs is pretty slow! Eventually
      though this target should have a linker.
      
      This target is also intended to be quite experimental. I'm hoping that this can
      act as a catalyst for further experimentation in Rust with WebAssembly. Breaking
      changes are very likely to land to this target, so it's not recommended to rely
      on it in any critical capacity yet. We'll let you know when it's "production
      ready".
      
      ---
      
      Currently testing-wise this target is looking pretty good but isn't complete.
      I've got almost the entire `run-pass` test suite working with this target (lots
      of tests ignored, but many passing as well). The `core` test suite is still
      getting LLVM bugs fixed to get that working and will take some time. Relatively
      simple programs all seem to work though!
      
      ---
      
      It's worth nothing that you may not immediately see the "smallest possible wasm
      module" for the input you feed to rustc. For various reasons it's very difficult
      to get rid of the final "bloat" in vanilla rustc (again, a real linker should
      fix all this). For now what you'll have to do is:
      
          cargo install --git https://github.com/alexcrichton/wasm-gc
          wasm-gc foo.wasm bar.wasm
      
      And then `bar.wasm` should be the smallest we can get it!
      
      ---
      
      In any case for now I'd love feedback on this, particularly on the various
      integration points if you've got better ideas of how to approach them!
      80ff0f74
  23. 26 8月, 2017 1 次提交
  24. 25 8月, 2017 1 次提交
  25. 23 8月, 2017 1 次提交
    • S
      Update libunwind dependencies for musl · c9645678
      Samuel Holland 提交于
      Use libgcc_s when linking dynamically. Convert the static libunwind to
      static-nobundle, as libunwind.a is copied from musl_root and available
      in the library search path.
      c9645678
  26. 31 3月, 2017 1 次提交
  27. 30 12月, 2016 1 次提交
    • A
      Remove not(stage0) from deny(warnings) · 9b0b5b45
      Alex Crichton 提交于
      Historically this was done to accommodate bugs in lints, but there hasn't been a
      bug in a lint since this feature was added which the warnings affected. Let's
      completely purge warnings from all our stages by denying warnings in all stages.
      This will also assist in tracking down `stage0` code to be removed whenever
      we're updating the bootstrap compiler.
      9b0b5b45
  28. 29 5月, 2016 1 次提交
  29. 09 5月, 2016 1 次提交
    • A
      rustc: Implement custom panic runtimes · 0ec321f7
      Alex Crichton 提交于
      This commit is an implementation of [RFC 1513] which allows applications to
      alter the behavior of panics at compile time. A new compiler flag, `-C panic`,
      is added and accepts the values `unwind` or `panic`, with the default being
      `unwind`. This model affects how code is generated for the local crate, skipping
      generation of landing pads with `-C panic=abort`.
      
      [RFC 1513]: https://github.com/rust-lang/rfcs/blob/master/text/1513-less-unwinding.md
      
      Panic implementations are then provided by crates tagged with
      `#![panic_runtime]` and lazily required by crates with
      `#![needs_panic_runtime]`. The panic strategy (`-C panic` value) of the panic
      runtime must match the final product, and if the panic strategy is not `abort`
      then the entire DAG must have the same panic strategy.
      
      With the `-C panic=abort` strategy, users can expect a stable method to disable
      generation of landing pads, improving optimization in niche scenarios,
      decreasing compile time, and decreasing output binary size. With the `-C
      panic=unwind` strategy users can expect the existing ability to isolate failure
      in Rust code from the outside world.
      
      Organizationally, this commit dismantles the `sys_common::unwind` module in
      favor of some bits moving part of it to `libpanic_unwind` and the rest into the
      `panicking` module in libstd. The custom panic runtime support is pretty similar
      to the custom allocator support with the only major difference being how the
      panic runtime is injected (takes the `-C panic` flag into account).
      0ec321f7
  30. 15 2月, 2016 1 次提交
    • A
      trans: Don't link whole rlibs to executables · cc719d2d
      Alex Crichton 提交于
      Back in 9bc8e6d1 the linking of rlibs changed to using the `link_whole_rlib`
      function. This change, however was only intended to affect dylibs, not
      executables. For executables we don't actually want to link entire rlibs because
      we want the linker to strip out as much as possible.
      
      This commit adds a conditional to this logic to only link entire rlibs if we're
      creating a dylib, and otherwise an executable just links an rlib as usual. A
      test is included which will fail to link if this behavior is reverted.
      cc719d2d
  31. 29 1月, 2016 1 次提交
  32. 26 1月, 2016 1 次提交
  33. 23 1月, 2016 1 次提交
  34. 16 1月, 2016 1 次提交
    • B
      Translate zero-sized return types as void · f10af2e5
      Björn Steinbrink 提交于
      The only way to get a value for a zero-sized type is `undef`, so
      there's really no point in actually having a return type other than
      void for such types. Also, while the comment in return_type_is_void
      mentioned something about aiding C ABI support, @EddyB correctly
      pointed out on IRC that there is no such thing as a zero-sized type in
      C. And even with clang, which allows empty structs, those get
      translated as void return types as well.
      
      Fixes #28766
      f10af2e5
  35. 14 4月, 2014 1 次提交
  36. 08 2月, 2014 1 次提交
  37. 04 5月, 2013 1 次提交
  38. 27 3月, 2013 1 次提交