diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2022-10-25 22:34:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 22:34:22 (GMT) |
commit | 1f737edb67e702095feb97118a911afb569f5705 (patch) | |
tree | 40f32d35a69226f83d96c3d90eaad3d62f06c4f4 /configure.ac | |
parent | 0c84593275969d9b8f42e75abb2638b69d5b5f4a (diff) | |
download | cpython-1f737edb67e702095feb97118a911afb569f5705.zip cpython-1f737edb67e702095feb97118a911afb569f5705.tar.gz cpython-1f737edb67e702095feb97118a911afb569f5705.tar.bz2 |
gh-96143: Move the perf trampoline files to the Python directory (#98675)
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c7945aa..210ce32 100644 --- a/configure.ac +++ b/configure.ac @@ -3474,7 +3474,7 @@ AC_MSG_RESULT([$perf_trampoline]) AS_VAR_IF([perf_trampoline], [yes], [ AC_DEFINE([PY_HAVE_PERF_TRAMPOLINE], [1], [Define to 1 if you have the perf trampoline.]) - PERF_TRAMPOLINE_OBJ=Objects/asm_trampoline.o + PERF_TRAMPOLINE_OBJ=Python/asm_trampoline.o dnl perf needs frame pointers for unwinding, include compiler option in debug builds AS_VAR_IF([Py_DEBUG], [true], [ |