aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/config/feature-checks/test-libpython-version.c
diff options
context:
space:
mode:
authorJiri Olsa <[email protected]>2015-03-01 20:19:44 +0000
committerArnaldo Carvalho de Melo <[email protected]>2015-03-21 17:53:35 +0000
commite6c76d620379fd65fc0310aee1785ff7b1b10236 (patch)
tree223fe9d9a8e528c69b0545b371555b6218de50d5 /tools/perf/config/feature-checks/test-libpython-version.c
parentperf build: Make features checks directory configurable (diff)
downloadkernel-e6c76d620379fd65fc0310aee1785ff7b1b10236.tar.gz
kernel-e6c76d620379fd65fc0310aee1785ff7b1b10236.zip
perf build: Move feature checks code under tools/build
Moving feature checks code under tools/build directory. Changing also $feature_dir to point to new feature directory location and perf Makefiles to include Makefile.feature from new location. Signed-off-by: Jiri Olsa <[email protected]> Cc: Corey Ashford <[email protected]> Cc: David Ahern <[email protected]> Cc: Namhyung Kim <[email protected]> Cc: Paul Mackerras <[email protected]> Cc: Peter Zijlstra <[email protected]> Link: http://lkml.kernel.org/n/[email protected] Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
Diffstat (limited to 'tools/perf/config/feature-checks/test-libpython-version.c')
-rw-r--r--tools/perf/config/feature-checks/test-libpython-version.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/tools/perf/config/feature-checks/test-libpython-version.c b/tools/perf/config/feature-checks/test-libpython-version.c
deleted file mode 100644
index facea122d812..000000000000
--- a/tools/perf/config/feature-checks/test-libpython-version.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <Python.h>
-
-#if PY_VERSION_HEX >= 0x03000000
- #error
-#endif
-
-int main(void)
-{
- return 0;
-}