1. 06 1月, 2015 1 次提交
  2. 15 5月, 2014 1 次提交
  3. 01 3月, 2014 1 次提交
    • A
      rustc: Add the concept of a Strict Version Hash · ec57db08
      Alex Crichton 提交于
      This new SVH is used to uniquely identify all crates as a snapshot in time of
      their ABI/API/publicly reachable state. This current calculation is just a hash
      of the entire crate's AST. This is obviously incorrect, but it is currently the
      reality for today.
      
      This change threads through the new Svh structure which originates from crate
      dependencies. The concept of crate id hash is preserved to provide efficient
      matching on filenames for crate loading. The inspected hash once crate metadata
      is opened has been changed to use the new Svh.
      
      The goal of this hash is to identify when upstream crates have changed but
      downstream crates have not been recompiled. This will prevent the def-id drift
      problem where upstream crates were recompiled, thereby changing their metadata,
      but downstream crates were not recompiled.
      
      In the future this hash can be expanded to exclude contents of the AST like doc
      comments, but limitations in the compiler prevent this change from being made at
      this time.
      
      Closes #10207
      ec57db08
  4. 28 1月, 2014 1 次提交
  5. 27 1月, 2014 1 次提交
  6. 19 1月, 2014 1 次提交
  7. 12 1月, 2014 1 次提交
  8. 11 1月, 2014 1 次提交
  9. 06 1月, 2014 1 次提交
    • A
      Don't abort the process in native::start · eadfe0e3
      Alex Crichton 提交于
      If the main closure failed, then the `exit_code` variable would still be `None`,
      and the `unwrap()` was failing (triggering a process abort). This changes the
      `unwrap()` to an `unwrap_or()` in order to prevent process abort and detect when
      the native task failed.
      eadfe0e3
  10. 04 1月, 2014 1 次提交
    • H
      std: adjust requested stack size for thread-local storage. · f1b5f592
      Huon Wilson 提交于
      If there is a lot of data in thread-local storage some implementations
      of pthreads (e.g. glibc) fail if you don't request a stack large enough
      -- by adjusting for the minimum size we guarantee that our stacks are
      always large enough. Issue #6233.
      f1b5f592
  11. 08 12月, 2013 1 次提交
  12. 06 10月, 2013 1 次提交
  13. 25 9月, 2013 1 次提交
  14. 11 9月, 2013 1 次提交
  15. 17 8月, 2013 1 次提交
  16. 12 7月, 2013 1 次提交
  17. 09 7月, 2013 2 次提交
  18. 11 12月, 2012 1 次提交
  19. 20 1月, 2012 2 次提交
  20. 16 1月, 2012 1 次提交
    • K
      Don't evaluate discriminator value constants when parsing. · e1c50c44
      Kevin Atkinson 提交于
      Remove disr_val from ast::variant_ and always use ty::variant_info
      when the value is needed.  Move what was done during parsing into
      other passes, primary typeck.rs.  This move also correctly type checks
      the disr. value expression; thus, fixing rustc --pretty=typed when
      disr. values are used.
      e1c50c44