提交 d0707c91 编写于 作者: I Ingo Molnar

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.orgSigned-off-by: NIngo Molnar <mingo@kernel.org>
上级 3b7646e4
...@@ -121,6 +121,7 @@ FEATURE_TESTS = \ ...@@ -121,6 +121,7 @@ FEATURE_TESTS = \
libperl \ libperl \
libpython \ libpython \
libpython-version \ libpython-version \
strlcpy \
libbfd \ libbfd \
libnuma libnuma
...@@ -434,7 +435,7 @@ else ...@@ -434,7 +435,7 @@ else
endif endif
ifndef NO_STRLCPY ifndef NO_STRLCPY
ifeq ($(call try-cc,$(SOURCE_STRLCPY),,-DHAVE_STRLCPY_SUPPORT),y) ifeq ($(feature-strlcpy), 1)
CFLAGS += -DHAVE_STRLCPY_SUPPORT CFLAGS += -DHAVE_STRLCPY_SUPPORT
endif endif
endif endif
......
...@@ -19,6 +19,7 @@ FILES= \ ...@@ -19,6 +19,7 @@ FILES= \
test-libperl \ test-libperl \
test-libpython \ test-libpython \
test-libpython-version \ test-libpython-version \
test-strlcpy \
test-libbfd \ test-libbfd \
test-libnuma test-libnuma
...@@ -113,6 +114,9 @@ test-libpython: ...@@ -113,6 +114,9 @@ test-libpython:
test-libpython-version: test-libpython-version:
$(BUILD) $(FLAGS_PYTHON_EMBED) $(BUILD) $(FLAGS_PYTHON_EMBED)
test-strlcpy:
$(BUILD)
test-libbfd: test-libbfd:
$(BUILD) -DPACKAGE='perf' -DPACKAGE=perf -lbfd -ldl $(BUILD) -DPACKAGE='perf' -DPACKAGE=perf -lbfd -ldl
......
#include <stdlib.h>
extern size_t strlcpy(char *dest, const char *src, size_t size);
int main(void)
{
strlcpy(NULL, NULL, 0);
return 0;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册