diff options
Diffstat (limited to 'tools/perf/config/feature-checks/test-libpython.c')
-rw-r--r-- | tools/perf/config/feature-checks/test-libpython.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/perf/config/feature-checks/test-libpython.c b/tools/perf/config/feature-checks/test-libpython.c new file mode 100644 index 000000000000..b24b28ad6324 --- /dev/null +++ b/tools/perf/config/feature-checks/test-libpython.c | |||
@@ -0,0 +1,8 @@ | |||
1 | #include <Python.h> | ||
2 | |||
3 | int main(void) | ||
4 | { | ||
5 | Py_Initialize(); | ||
6 | |||
7 | return 0; | ||
8 | } | ||