about summary refs log tree commit diff
path: root/src/doc/complement-lang-faq.md
diff options
context:
space:
mode:
authorklutzy <klutzytheklutzy@gmail.com>2014-04-01 10:42:42 +0900
committerklutzy <klutzytheklutzy@gmail.com>2014-04-01 14:42:04 +0900
commite481ced80f33c19fbcb91b5201861057988bb6d2 (patch)
treec20a5a0c3c327c6b7c1953efa448647026497d43 /src/doc/complement-lang-faq.md
parentb8ef9fd9c9f642ce7b8aed82782a1ed745d08d64 (diff)
downloadrust-e481ced80f33c19fbcb91b5201861057988bb6d2.tar.gz
rust-e481ced80f33c19fbcb91b5201861057988bb6d2.zip
doc: Update windows status on FAQ
Diffstat (limited to 'src/doc/complement-lang-faq.md')
-rw-r--r--src/doc/complement-lang-faq.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/doc/complement-lang-faq.md b/src/doc/complement-lang-faq.md
index 5b38ef5645e..3053c90217f 100644
--- a/src/doc/complement-lang-faq.md
+++ b/src/doc/complement-lang-faq.md
@@ -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 executables created by rustc [depends on libgcc DLL at runtime][libgcc].
 
-[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?