From 2b555fb7cf181e0c78a55ff87f27cd7df3e38a0b Mon Sep 17 00:00:00 2001 From: klzgrad Date: Wed, 6 Oct 2021 15:30:54 +0800 Subject: [PATCH] musl: third_party/lss: Fix missing sgidefs.h --- src/third_party/lss/linux_syscall_support.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/third_party/lss/linux_syscall_support.h b/src/third_party/lss/linux_syscall_support.h index c706e24f2a..ba23d1946d 100644 --- a/src/third_party/lss/linux_syscall_support.h +++ b/src/third_party/lss/linux_syscall_support.h @@ -119,7 +119,7 @@ extern "C" { #ifdef __mips__ /* Include definitions of the ABI currently in use. */ -#ifdef __ANDROID__ +#if defined(__ANDROID__) || defined(__MUSL__) /* Android doesn't have sgidefs.h, but does have asm/sgidefs.h, * which has the definitions we need. */