Skip to content

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

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

Closed
wants to merge 55 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
d3034e5
arrange core::os::consts
ILyoan Dec 20, 2012
0a7b730
use core::os::consts instead of hard coded contant value
ILyoan Dec 20, 2012
df6345a
generate output dll name based on target os
ILyoan Dec 20, 2012
658420a
formatting
ILyoan Dec 20, 2012
65839fa
Emit a type error for integer literals where the expected type is char
catamorphism Dec 22, 2012
5ec3aba
Improve documentation for each.
steveklabnik Dec 28, 2012
5b2b13b
test: option variants get imported by default
erickt Dec 28, 2012
2d7b96a
Fix compiling compiletest. rs=fire
erickt Dec 28, 2012
7af1080
Merge pull request #4308 from steveklabnik/patch-1
catamorphism Dec 28, 2012
fd095f8
Add Steve Klabnik to AUTHORS
catamorphism Dec 28, 2012
13879d8
libstd: Fix tests. rs=bustage
pcwalton Dec 28, 2012
a75c0b3
Merge pull request #4268 from catamorphism/issue-3477
catamorphism Dec 28, 2012
cef1539
Long lines
catamorphism Dec 28, 2012
c7d48ea
MIT + Apache 2 dual license
Dec 22, 2012
11a9918
Wrap lines
brson Dec 28, 2012
dda12f8
Replace much of the REPL run code with a call to compile_upto
bleibig Dec 27, 2012
5910773
doc: Rename mention of insert_or_update_with_key
sophiebits Dec 28, 2012
4e07a63
Add Ben Alpert to AUTHORS
catamorphism Dec 28, 2012
f67c372
test: Fix a bunch of run-pass tests. rs=bustage
pcwalton Dec 29, 2012
31b07ae
test: Fix test/run-pass/pipe-pingpong-bounded. rs=bustage
pcwalton Dec 29, 2012
c42d5e2
test: Fix test/run-pass/pipe-pingpong-proto. rs=bustage
pcwalton Dec 29, 2012
40eaecb
test: Fix a couple more tests. rs=bustage
pcwalton Dec 29, 2012
19dfb47
test: Fix test/run-pass/class-cast-to-trait-cross-crate-2. rs=fire
pcwalton Dec 29, 2012
b92ea8d
test: Fix test/run-pass-fulldeps/qquote.rs. rs=bustage
pcwalton Dec 29, 2012
5bd8692
test: Fix a bunch of compile-fail tests. rs=bustage
pcwalton Dec 29, 2012
5245ace
test: Fix benchmarks. rs=rustbot
pcwalton Dec 29, 2012
6e7cf87
Remove spurious semicolons at the end of macro_rules! definitions.
FranklinChen Dec 28, 2012
b6aafe9
When an import fails to resolve, make the error message say
Dec 27, 2012
d68954e
Fix the build by removing trailing whitespace.
Dec 29, 2012
624421a
Simplify idents_to_str and use it in more places.
Dec 29, 2012
47cd1e4
librustdoc: Fix a bunch of rustdoc tests. rs=bustage
pcwalton Dec 30, 2012
015ed66
librustdoc: Fix typo. rs=busted
pcwalton Dec 30, 2012
2822365
librustdoc: More text fixes. rs=busted
pcwalton Dec 30, 2012
10333a5
libstd: Comment out mysteriously failing net-url test. rs=busted
pcwalton Dec 30, 2012
4b3dd4b
doc: Fix some broken tutorial examples. rs=bustage
pcwalton Dec 30, 2012
4be7310
doc: Fix explanation and example of struct-like enum variants. rs=busted
pcwalton Dec 30, 2012
4b1d2dc
reset LinearMap.size when expanding buckets
ttaubert Dec 30, 2012
4cb9247
doc: make small corrections to tutorial
apasel422 Dec 30, 2012
62d6031
Merge pull request #4317 from apasel422/tutorial-fix
catamorphism Dec 30, 2012
cfb33fc
Merge pull request #4311 from FranklinChen/fix-macro-tutorial
catamorphism Dec 30, 2012
4dde334
Add Franklin Chen to AUTHORS
catamorphism Dec 30, 2012
08d9c5b
Merge pull request #4312 from Dretch/issue-2914
catamorphism Dec 30, 2012
e08f304
rt: Remove dead code from schedule_task()
cpeterso Dec 31, 2012
16797fd
doc: Fix some typos in the tutorial and reference manual
cpeterso Dec 31, 2012
84a37a3
Merge pull request #4323 from cpeterso/cpeterso-schedule-task
brson Jan 1, 2013
eeec4a7
Merge pull request #4322 from cpeterso/incoming-doc-typos
brson Jan 1, 2013
96ba9de
Merge pull request #4316 from ttaubert/issue-4277-linear-map-len
brson Jan 1, 2013
587ce48
Merge pull request #4324 from steveklabnik/std_net
brson Jan 1, 2013
a893d1f
arrange core::os::consts
ILyoan Dec 20, 2012
84535f2
resolve a conflict to merge incoming
ILyoan Jan 2, 2013
dc8cc1a
generate output dll name based on target os
ILyoan Dec 20, 2012
7985d07
formatting
ILyoan Dec 20, 2012
2272d5c
change functions on core::os to constants
ILyoan Dec 21, 2012
8059f6c
modifications due to the change os::sysname() -> os::SYSNAME
ILyoan Jan 2, 2013
3ef6e1d
merge
ILyoan Jan 2, 2013
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Long lines
  • Loading branch information
catamorphism committed Dec 28, 2012
commit cef153947d1e4d3ea76311637e0947da238bc72c
3 changes: 2 additions & 1 deletion src/libcore/vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,8 @@ pub pure fn reversed<T: Copy>(v: &[const T]) -> ~[T] {
* # Arguments
*
* * `v` - A vector, to be iterated over
* * `f` - A closure to do the iterating. Within this closure, return true to continue iterating, false to break.
* * `f` - A closure to do the iterating. Within this closure, return true to
* * continue iterating, false to break.
*
* # Examples
* ~~~
Expand Down