]> git.lizzy.rs Git - rust.git/commit
Move runtime files to C instead of C++
authorAlex Crichton <alex@alexcrichton.com>
Thu, 14 Nov 2013 18:04:55 +0000 (10:04 -0800)
committerAlex Crichton <alex@alexcrichton.com>
Tue, 19 Nov 2013 05:45:58 +0000 (21:45 -0800)
commit508b7b996e5d557ec1c49e1d11563ecf4fc9d287
tree56afc4b9b834d4496c175a3ab701823dbba72e15
parente8bf0788027932a0b547819cc9edd13c40426e36
Move runtime files to C instead of C++

Explicitly have the only C++ portion of the runtime be one file with exception
handling. All other runtime files must now live in C and be fully defined in C.
18 files changed:
mk/clean.mk
mk/platform.mk
mk/rt.mk
src/libstd/rt/args.rs
src/rt/miniz.c [new file with mode: 0644]
src/rt/miniz.cpp [deleted file]
src/rt/rust_android_dummy.c [new file with mode: 0644]
src/rt/rust_android_dummy.cpp [deleted file]
src/rt/rust_builtin.c [new file with mode: 0644]
src/rt/rust_builtin.cpp [deleted file]
src/rt/rust_cxx_glue.cpp [new file with mode: 0644]
src/rt/rust_globals.h
src/rt/rust_test_helpers.c [new file with mode: 0644]
src/rt/rust_test_helpers.cpp [deleted file]
src/rt/rust_upcall.c [new file with mode: 0644]
src/rt/rust_upcall.cpp [deleted file]
src/rt/rust_uv.c [new file with mode: 0644]
src/rt/rust_uv.cpp [deleted file]