Merge branch 'target_env_musl' into 'main'

Adding musl target env

See merge request veilid/veilid!177
This commit is contained in:
Christien Rioux 2023-09-10 21:04:00 +00:00
commit 3fdf12e536
No known key found for this signature in database

View File

@ -122,7 +122,7 @@ impl PlatformSupportNetlink {
}
cfg_if! {
if #[cfg(target_os = "android")] {
if #[cfg(any(target_os = "android", target_env = "musl"))] {
let res = unsafe { ioctl(sock, SIOCGIFFLAGS as i32, &mut req) };
} else {
let res = unsafe { ioctl(sock, SIOCGIFFLAGS, &mut req) };