mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Workaround to land the rustup while we wait for rust-errno
This commit is contained in:
parent
3acfe5acdd
commit
5bf2ae81a5
1 changed files with 9 additions and 0 deletions
|
@ -252,3 +252,12 @@ pub fn run_content_process(token: String) {
|
|||
script::script_thread::ScriptThread>(true);
|
||||
}
|
||||
|
||||
// This is a workaround for https://github.com/rust-lang/rust/pull/30175 until
|
||||
// https://github.com/lfairy/rust-errno/pull/5 lands, and should be removed once
|
||||
// we update Servo with the rust-errno crate.
|
||||
#[cfg(target_os = "android")]
|
||||
#[no_mangle]
|
||||
pub unsafe extern fn __errno_location() -> *mut i32 {
|
||||
extern { fn __errno() -> *mut i32; }
|
||||
__errno()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue