forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,10 +31,10 @@ You may also be interested in browsing [GitHub's Rust][github-rust] page. | |
|
||
## Does it run on Windows? | ||
|
||
Yes. All development happens in lock-step on all 3 target platforms. Using MinGW, not Cygwin. Note that the windows implementation currently has some limitations: in particular tasks [cannot unwind on windows][unwind], and all Rust executables [require a MinGW installation at runtime][libgcc]. | ||
Yes. All development happens in lock-step on all 3 target platforms. Using MinGW, not Cygwin. Note that the windows implementation currently has some limitations: in particular 64-bit build is [not fully supported yet][win64], and all Rust executables [depends on libgcc DLL at runtime][libgcc]. | ||
|
||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
kud1ing
|
||
[unwind]: https://github.com/mozilla/rust/issues/908 | ||
[libgcc]: https://github.com/mozilla/rust/issues/1603 | ||
[win64]: https://github.com/mozilla/rust/issues/1237 | ||
[libgcc]: https://github.com/mozilla/rust/issues/11782 | ||
|
||
## Is it OO? How do I do this thing I normally do in an OO language? | ||
|
||
|
1 comment
on commit f76d7aa
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
r+
Rust executables means executables created by rustc?