void-packages/srcpkgs/pahole/patches/fix_always_inline.patch

40 lines
831 B
Diff

--- a/dutil.h
+++ b/dutil.h
@@ -28,6 +28,10 @@
#define __pure __attribute__ ((pure))
#endif
+#ifndef __always_inline
+#define __always_inline inline
+#endif
+
#define roundup(x,y) ((((x) + ((y) - 1)) / (y)) * (y))
static inline __attribute__((const)) bool is_power_of_2(unsigned long n)
--- a/lib/bpf/src/libbpf.c
+++ b/lib/bpf/src/libbpf.c
@@ -10,6 +10,10 @@
* Copyright (C) 2019 Isovalent, Inc.
*/
+#ifndef __always_inline
+#define __always_inline inline
+#endif
+
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
--- a/lib/bpf/src/gen_loader.c
+++ b/lib/bpf/src/gen_loader.c
@@ -1,5 +1,10 @@
// SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
/* Copyright (c) 2021 Facebook */
+
+#ifndef __always_inline
+#define __always_inline inline
+#endif
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>