mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-13 18:44:26 +00:00
Refresh patches Drop upstreamed patch 0001-profile-handler-Specify-libc-specific-thread_id.patch Fix build on musl/ppc Disable heap and cpu profilers on ppc64le/musl since it does not build stacktrace utility yet Signed-off-by: Khem Raj <raj.khem@gmail.com>
24 lines
716 B
Diff
24 lines
716 B
Diff
From 259b420444c52463795b4b582a2ab7511149eea7 Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Mon, 16 Oct 2017 21:26:40 -0700
|
|
Subject: [PATCH] sgidef.h does not exist on musl and its not needed to compile
|
|
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
Upstream-Status: Pending
|
|
|
|
---
|
|
src/base/linux_syscall_support.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/src/base/linux_syscall_support.h
|
|
+++ b/src/base/linux_syscall_support.h
|
|
@@ -164,7 +164,7 @@ extern "C" {
|
|
#include <endian.h>
|
|
#include <fcntl.h>
|
|
|
|
-#ifdef __mips__
|
|
+#if defined(__mips__) && defined(__glibc__)
|
|
/* Include definitions of the ABI currently in use. */
|
|
#include <sgidefs.h>
|
|
#endif
|