build: Initial musl support

Fix all build failures and add musl to the gihub workflows.

Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
Samuel Ortiz
2020-04-20 08:07:17 +02:00
committed by Rob Bradford
parent a5de49558e
commit 86fcd19b8a
4 changed files with 32 additions and 11 deletions

View File

@@ -4,7 +4,6 @@
use std::collections::btree_map;
use std::collections::BTreeMap;
use std::convert::TryInto;
use std::ffi::{CStr, CString};
use std::fs::File;
use std::io;
@@ -1695,13 +1694,14 @@ impl FileSystem for PassthroughFs {
// Safe because this will only modify `offset_in` and `offset_out` and we check
// the return value.
let res = unsafe {
libc::copy_file_range(
libc::syscall(
libc::SYS_copy_file_range,
fd_in,
&mut (offset_in as i64) as &mut _ as *mut _,
fd_out,
&mut (offset_out as i64) as &mut _ as *mut _,
len.try_into().unwrap(),
flags.try_into().unwrap(),
len,
flags,
)
};
if res < 0 {