We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5410505 commit 08b74c7Copy full SHA for 08b74c7
ports/servo/main.rs
@@ -17,6 +17,9 @@
17
18
#![cfg_attr(feature = "unstable", feature(core_intrinsics))]
19
20
+// Work around https://github.com/rust-lang/rust/issues/53205
21
+#[cfg(not(target_os = "android"))] #[macro_use] extern crate log;
22
+
23
#[cfg(not(target_os = "android"))] include!("non_android_main.rs");
24
25
#[cfg(target_os = "android")]
ports/servo/non_android_main.rs
@@ -9,7 +9,6 @@ extern crate gleam;
9
extern crate glutin;
10
#[macro_use] extern crate lazy_static;
11
// The window backed by glutin
12
-#[macro_use] extern crate log;
13
#[cfg(any(target_os = "linux", target_os = "macos"))] extern crate osmesa_sys;
14
extern crate servo;
15
#[cfg(feature = "unstable")]
0 commit comments