Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d0707c91 authored by Ingo Molnar's avatar Ingo Molnar
Browse files

tools/perf/build: Split out feature check: 'strlcpy'

Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Link: http://lkml.kernel.org/n/tip-ektO8cgvupthhyqqczSok2sr@git.kernel.org


Signed-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent 3b7646e4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -121,6 +121,7 @@ FEATURE_TESTS = \
	libperl				\
	libpython			\
	libpython-version		\
	strlcpy				\
	libbfd				\
	libnuma

@@ -434,7 +435,7 @@ else
endif

ifndef NO_STRLCPY
  ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY_SUPPORT),y)
  ifeq ($(feature-strlcpy), 1)
    CFLAGS += -DHAVE_STRLCPY_SUPPORT
  endif
endif
+4 −0
Original line number Diff line number Diff line
@@ -19,6 +19,7 @@ FILES= \
	test-libperl			\
	test-libpython			\
	test-libpython-version		\
	test-strlcpy			\
	test-libbfd			\
	test-libnuma

@@ -113,6 +114,9 @@ test-libpython:
test-libpython-version:
	$(BUILD) $(FLAGS_PYTHON_EMBED)

test-strlcpy:
	$(BUILD)

test-libbfd:
	$(BUILD) -DPACKAGE='perf' -DPACKAGE=perf -lbfd -ldl

+8 −0
Original line number Diff line number Diff line
#include <stdlib.h>
extern size_t strlcpy(char *dest, const char *src, size_t size);

int main(void)
{
	strlcpy(NULL, NULL, 0);
	return 0;
}