rust/src/libstd/sys/common
bors 71409184dc Auto merge of #29177 - vadimcn:rtstuff, r=alexcrichton
Note: for now, this change only affects `-windows-gnu` builds.

So why was this `libgcc` dylib dependency needed in the first place?
The stack unwinder needs to know about locations of unwind tables of all the modules loaded in the current process.  The easiest portable way of achieving this is to have each module register itself with the unwinder when loaded into the process.  All modules compiled by GCC do this by calling the __register_frame_info() in their startup code (that's `crtbegin.o` and `crtend.o`, which are automatically linked into any gcc output).
Another important piece is that there should be only one copy of the unwinder (and thus unwind tables registry) in the process.  This pretty much means that the unwinder must be in a shared library (unless everything is statically linked). 

Now, Rust compiler tries very hard to make sure that any given Rust crate appears in the final output just once.   So if we link the unwinder statically to one of Rust's crates, everything should be fine.

Unfortunately, GCC startup objects are built under assumption that `libgcc` is the one true place for the unwind info registry, so I couldn't find any better way than to replace them.  So out go `crtbegin`/`crtend`, in come `rsbegin`/`rsend`!  

A side benefit of this change is that rustc is now more in control of the command line that goes to the linker, so we could stop using `gcc` as the linker driver and just invoke `ld` directly.
2015-11-01 17:15:29 +00:00
..
dwarf std: Internalize almost all of std::rt 2015-09-11 11:19:20 -07:00
gnu some more clippy-based improvements 2015-09-08 00:36:29 +02:00
unwind Auto merge of #29177 - vadimcn:rtstuff, r=alexcrichton 2015-11-01 17:15:29 +00:00
args.rs std: Internalize almost all of std::rt 2015-09-11 11:19:20 -07:00
at_exit_imp.rs std: Internalize almost all of std::rt 2015-09-11 11:19:20 -07:00
backtrace.rs Port the standard crates to PNaCl/NaCl. 2015-10-28 17:23:28 -05:00
condvar.rs
io.rs
libunwind.rs Fix stage0 ICE caused by the old _Unwind_Resume override trickery. 2015-10-31 18:52:37 -07:00
mod.rs std: Internalize almost all of std::rt 2015-09-11 11:19:20 -07:00
mutex.rs
net.rs some more clippy-based improvements 2015-09-08 00:36:29 +02:00
poison.rs
remutex.rs some more clippy-based improvements 2015-09-08 00:36:29 +02:00
rwlock.rs
thread_info.rs
thread_local.rs
thread.rs
util.rs std: Internalize almost all of std::rt 2015-09-11 11:19:20 -07:00
wtf8.rs Remove bare semicolons 2015-10-24 00:35:44 +02:00