mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-01-11 09:09:40 +00:00
bpf-headers: ship a modified version of stdarg.h from musl to fix ebpf build on glibc
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
parent
b3b0a25ee8
commit
1b46333895
@ -106,6 +106,9 @@ define Build/InstallDev
|
||||
$(PKG_BUILD_DIR)/scripts \
|
||||
$(PKG_BUILD_DIR)/user_headers \
|
||||
$(1)/bpf-headers
|
||||
$(CP) \
|
||||
$(CURDIR)/files/stdarg.h \
|
||||
$(1)/bpf-headers/include
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,bpf-headers))
|
||||
|
19
package/kernel/bpf-headers/files/stdarg.h
Normal file
19
package/kernel/bpf-headers/files/stdarg.h
Normal file
@ -0,0 +1,19 @@
|
||||
#ifndef _STDARG_H
|
||||
#define _STDARG_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
typedef __builtin_va_list va_list;
|
||||
|
||||
#define va_start(v,l) __builtin_va_start(v,l)
|
||||
#define va_end(v) __builtin_va_end(v)
|
||||
#define va_arg(v,l) __builtin_va_arg(v,l)
|
||||
#define va_copy(d,s) __builtin_va_copy(d,s)
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user