We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6be25a commit c40cf96Copy full SHA for c40cf96
src/rt/rust.cpp
@@ -80,9 +80,10 @@ extern "C" CDECL int
80
rust_start(uintptr_t main_fn, rust_crate const *crate, int argc,
81
char **argv, void* crate_map) {
82
83
- // Only when we're on rustc is the last argument passed
84
- if (!crate->get_image_base())
85
- update_log_settings(crate_map, getenv("RUST_LOG"));
+ // FIXME commented out until I figure out how to detect rustboot in a sane
+ // way
+ /* if (NOT_USING_RUSTBOOT)
86
+ update_log_settings(crate_map, getenv("RUST_LOG"));*/
87
rust_srv *srv = new rust_srv();
88
rust_kernel *kernel = new rust_kernel(srv);
89
kernel->start();
0 commit comments