diff options
author | Ingo Molnar <mingo@kernel.org> | 2013-09-30 09:15:36 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-10-09 02:48:43 -0400 |
commit | 7181a6714efc5039ffb50db7462d5cefe15b5630 (patch) | |
tree | 403520bb329619a355dc9fc86879e921c589dfeb /tools/perf/config/feature-checks/test-libperl.c | |
parent | c7a79e96dc166a1bdadca1367a39c84887e73de3 (diff) |
tools/perf/build: Split out feature check: 'libperl'
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-ggucqbwFwpxyuxde6dm7itHq@git.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf/config/feature-checks/test-libperl.c')
-rw-r--r-- | tools/perf/config/feature-checks/test-libperl.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/perf/config/feature-checks/test-libperl.c b/tools/perf/config/feature-checks/test-libperl.c new file mode 100644 index 000000000000..8871f6a0fdb4 --- /dev/null +++ b/tools/perf/config/feature-checks/test-libperl.c | |||
@@ -0,0 +1,9 @@ | |||
1 | #include <EXTERN.h> | ||
2 | #include <perl.h> | ||
3 | |||
4 | int main(void) | ||
5 | { | ||
6 | perl_alloc(); | ||
7 | |||
8 | return 0; | ||
9 | } | ||