perf: fix musl compatibility
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 48067
This commit is contained in:
parent
d3e233f02c
commit
6467fef419
2 changed files with 67 additions and 1 deletions
|
@ -24,7 +24,7 @@ include $(INCLUDE_DIR)/package.mk
|
||||||
define Package/perf
|
define Package/perf
|
||||||
SECTION:=devel
|
SECTION:=devel
|
||||||
CATEGORY:=Development
|
CATEGORY:=Development
|
||||||
DEPENDS:= @USE_GLIBC +libelf1 +libdw +libpthread +librt +binutils
|
DEPENDS:= @!USE_UCLIBC +libelf1 +libdw +libpthread +librt +binutils
|
||||||
TITLE:=Linux performance monitoring tool
|
TITLE:=Linux performance monitoring tool
|
||||||
VERSION:=$(LINUX_VERSION)-$(PKG_RELEASE)
|
VERSION:=$(LINUX_VERSION)-$(PKG_RELEASE)
|
||||||
URL:=http://www.kernel.org
|
URL:=http://www.kernel.org
|
||||||
|
@ -57,6 +57,10 @@ MAKE_FLAGS = \
|
||||||
WERROR=0 \
|
WERROR=0 \
|
||||||
prefix=/usr
|
prefix=/usr
|
||||||
|
|
||||||
|
ifdef CONFIG_USE_MUSL
|
||||||
|
MAKE_FLAGS += EXTRA_CFLAGS="-include $(CURDIR)/musl-compat.h -D__UCLIBC__"
|
||||||
|
endif
|
||||||
|
|
||||||
define Build/Compile
|
define Build/Compile
|
||||||
+$(MAKE_FLAGS) $(MAKE) $(PKG_JOBS) \
|
+$(MAKE_FLAGS) $(MAKE) $(PKG_JOBS) \
|
||||||
-C $(PKG_BUILD_DIR) \
|
-C $(PKG_BUILD_DIR) \
|
||||||
|
|
62
package/devel/perf/musl-compat.h
Normal file
62
package/devel/perf/musl-compat.h
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
#ifndef __PERF_MUSL_COMPAT_H
|
||||||
|
#define __PERF_MUSL_COMPAT_H
|
||||||
|
|
||||||
|
#include <sys/ioctl.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <syscall.h>
|
||||||
|
#include <sched.h>
|
||||||
|
|
||||||
|
#undef _IOWR
|
||||||
|
#undef _IOR
|
||||||
|
#undef _IOW
|
||||||
|
#undef _IOC
|
||||||
|
#undef _IO
|
||||||
|
|
||||||
|
/* Change XSI compliant version into GNU extension hackery */
|
||||||
|
#define strerror_r(err, buf, buflen) \
|
||||||
|
(strerror_r(err, buf, buflen) ? NULL : buf)
|
||||||
|
|
||||||
|
#define _SC_LEVEL1_DCACHE_LINESIZE -1
|
||||||
|
|
||||||
|
static inline long sysconf_wrap(int name)
|
||||||
|
{
|
||||||
|
FILE *f;
|
||||||
|
int val;
|
||||||
|
|
||||||
|
switch (name) {
|
||||||
|
case _SC_LEVEL1_DCACHE_LINESIZE:
|
||||||
|
f = fopen("/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size", "r");
|
||||||
|
if (!f)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
if (fscanf(f, "%d", &val) != 1)
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
fclose(f);
|
||||||
|
return val;
|
||||||
|
default:
|
||||||
|
return sysconf(name);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#define sysconf(_n) sysconf_wrap(_n)
|
||||||
|
|
||||||
|
static inline int compat_sched_getcpu(void)
|
||||||
|
{
|
||||||
|
#ifdef __NR_getcpu
|
||||||
|
unsigned int val;
|
||||||
|
|
||||||
|
if (syscall(__NR_getcpu, &val))
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
return val;
|
||||||
|
#else
|
||||||
|
return -1;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
#define sched_getcpu compat_sched_getcpu
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in a new issue