Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

generate dll file name based on target os. issue #4119 #4237

Closed
wants to merge 55 commits into from

Commits on Dec 20, 2012

  1. arrange core::os::consts

    ILyoan committed Dec 20, 2012
    Configuration menu
    Copy the full SHA
    d3034e5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0a7b730 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    df6345a View commit details
    Browse the repository at this point in the history
  4. formatting

    ILyoan committed Dec 20, 2012
    Configuration menu
    Copy the full SHA
    658420a View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2012

  1. Emit a type error for integer literals where the expected type is char

    For example, in let x: char = 42; This was an ICE and is now a
    proper type error, as per rust-lang#3477
    catamorphism committed Dec 22, 2012
    Configuration menu
    Copy the full SHA
    65839fa View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2012

  1. Improve documentation for each.

    Add description of arguments, and an example.
    steveklabnik committed Dec 28, 2012
    Configuration menu
    Copy the full SHA
    5ec3aba View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5b2b13b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2d7b96a View commit details
    Browse the repository at this point in the history
  4. Merge pull request rust-lang#4308 from steveklabnik/patch-1

    Improve documentation for each.
    catamorphism committed Dec 28, 2012
    Configuration menu
    Copy the full SHA
    7af1080 View commit details
    Browse the repository at this point in the history
  5. 1 Configuration menu
    Copy the full SHA
    fd095f8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    13879d8 View commit details
    Browse the repository at this point in the history
  7. Merge pull request rust-lang#4268 from catamorphism/issue-3477

    Emit a type error for integer literals where the expected type is char
    catamorphism committed Dec 28, 2012
    Configuration menu
    Copy the full SHA
    a75c0b3 View commit details
    Browse the repository at this point in the history
  8. Long lines

    catamorphism committed Dec 28, 2012
    Configuration menu
    Copy the full SHA
    cef1539 View commit details
    Browse the repository at this point in the history
  9. MIT + Apache 2 dual license

    Lenny222 authored and brson committed Dec 28, 2012
    Configuration menu
    Copy the full SHA
    c7d48ea View commit details
    Browse the repository at this point in the history
  10. Wrap lines

    brson committed Dec 28, 2012
    Configuration menu
    Copy the full SHA
    11a9918 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    dda12f8 View commit details
    Browse the repository at this point in the history
  12. doc: Rename mention of insert_or_update_with_key

    As far as I can tell, these docs were meant to refer to update_with_key.
    sophiebits authored and catamorphism committed Dec 28, 2012
    Configuration menu
    Copy the full SHA
    5910773 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    4e07a63 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2012

  1. Configuration menu
    Copy the full SHA
    f67c372 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    31b07ae View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c42d5e2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    40eaecb View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    19dfb47 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b92ea8d View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    5bd8692 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5245ace View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    6e7cf87 View commit details
    Browse the repository at this point in the history
  10. When an import fails to resolve, make the error message say

    which import it actually was. This makes debugging imports
    like: use aa::{x, y, z} easier (for issue rust-lang#2914).
    gareth authored and gareth committed Dec 29, 2012
    Configuration menu
    Copy the full SHA
    b6aafe9 View commit details
    Browse the repository at this point in the history
  11. Fix the build by removing trailing whitespace.

    gareth authored and gareth committed Dec 29, 2012
    Configuration menu
    Copy the full SHA
    d68954e View commit details
    Browse the repository at this point in the history
  12. Simplify idents_to_str and use it in more places.

    gareth authored and gareth committed Dec 29, 2012
    Configuration menu
    Copy the full SHA
    624421a View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2012

  1. Configuration menu
    Copy the full SHA
    47cd1e4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    015ed66 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2822365 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    10333a5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4b3dd4b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4be7310 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    4b1d2dc View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4cb9247 View commit details
    Browse the repository at this point in the history
  9. Merge pull request rust-lang#4317 from apasel422/tutorial-fix

    doc: make small corrections to tutorial
    catamorphism committed Dec 30, 2012
    Configuration menu
    Copy the full SHA
    62d6031 View commit details
    Browse the repository at this point in the history
  10. Merge pull request rust-lang#4311 from FranklinChen/fix-macro-tutorial

    Remove semicolons at the end of macro_rules! definitions that cause compile failure
    catamorphism committed Dec 30, 2012
    Configuration menu
    Copy the full SHA
    cfb33fc View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    4dde334 View commit details
    Browse the repository at this point in the history
  12. Merge pull request rust-lang#4312 from Dretch/issue-2914

    Work towards fixing issue rust-lang#2914
    catamorphism committed Dec 30, 2012
    Configuration menu
    Copy the full SHA
    08d9c5b View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2012

  1. Configuration menu
    Copy the full SHA
    e08f304 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    16797fd View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2013

  1. Merge pull request rust-lang#4323 from cpeterso/cpeterso-schedule-task

    rt: Remove dead code from schedule_task()
    brson committed Jan 1, 2013
    Configuration menu
    Copy the full SHA
    84a37a3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request rust-lang#4322 from cpeterso/incoming-doc-typos

    doc: Fix some typos in the tutorial and reference manual
    brson committed Jan 1, 2013
    Configuration menu
    Copy the full SHA
    eeec4a7 View commit details
    Browse the repository at this point in the history
  3. Merge pull request rust-lang#4316 from ttaubert/issue-4277-linear-map…

    …-len
    
    reset LinearMap.size when expanding buckets
    brson committed Jan 1, 2013
    Configuration menu
    Copy the full SHA
    96ba9de View commit details
    Browse the repository at this point in the history
  4. Merge pull request rust-lang#4324 from steveklabnik/std_net

    Add some extra description for std::net
    brson committed Jan 1, 2013
    Configuration menu
    Copy the full SHA
    587ce48 View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2013

  1. arrange core::os::consts

    ILyoan committed Jan 2, 2013
    Configuration menu
    Copy the full SHA
    a893d1f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    84535f2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dc8cc1a View commit details
    Browse the repository at this point in the history
  4. formatting

    ILyoan committed Jan 2, 2013
    Configuration menu
    Copy the full SHA
    7985d07 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2272d5c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8059f6c View commit details
    Browse the repository at this point in the history
  7. merge

    ILyoan committed Jan 2, 2013
    Configuration menu
    Copy the full SHA
    3ef6e1d View commit details
    Browse the repository at this point in the history