diff options
author | Ingo Molnar <mingo@kernel.org> | 2015-03-22 10:56:19 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-03-22 10:56:19 +0100 |
commit | 963a70b8a2d65538f7d58b2b84a2ae10a3ecb6ea (patch) | |
tree | 3c104859a1a4c5de6a30aee4e483ee2d0dfaf8c3 /tools/build/feature/test-libpython-version.c | |
parent | 08b3f913900075a19564ab68967028ab99c95820 (diff) | |
parent | ca33380adf74afb985bf7aab09ec46707a5d2d57 (diff) | |
download | linux-963a70b8a2d65538f7d58b2b84a2ae10a3ecb6ea.tar.bz2 |
Merge tag 'perf-core-for-mingo-2' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core
Pull perf/core improvements and fixes from Arnaldo Carvalho de Melo:
- Handle legacy syscalls tracepoints (David Ahern, Arnaldo Carvalho de Melo)
- Indicate which callchain entries are annotated in the
TUI hists browser (report/top) (Arnaldo Carvalho de Melo)
- Fix failure to add multiple probes without debuginfo (He Kuang)
- Fix 'trace' summary_only option (David Ahern)
- Fix race in build_id_cache__add_s() in 'buildid-cache' (Milos Vyletel)
- Don't allow empty argument for field-separator, fixing segfault (Wang Nan)
Infrastructure:
- Add destructor for format_field in libtraceevent (David Ahern)
- Prep work for support lzma compressed kernel modules (Jiri Olsa)
- Update .gitignore with recently added/renamed feature detection files (Yunlong Song)
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/build/feature/test-libpython-version.c')
-rw-r--r-- | tools/build/feature/test-libpython-version.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/build/feature/test-libpython-version.c b/tools/build/feature/test-libpython-version.c new file mode 100644 index 000000000000..facea122d812 --- /dev/null +++ b/tools/build/feature/test-libpython-version.c @@ -0,0 +1,10 @@ +#include <Python.h> + +#if PY_VERSION_HEX >= 0x03000000 + #error +#endif + +int main(void) +{ + return 0; +} |