mirror of https://github.com/python/cpython
[3.13] gh-121201: Disable perf_trampoline on riscv64 for now (GH-121328) (#121336)
gh-121201: Disable perf_trampoline on riscv64 for now (GH-121328)
Disable perf_trampoline on riscv64 for now
Until support is added in perf_jit_trampoline.c
gh-120089 was incomplete.
(cherry picked from commit ca2e876500
)
Co-authored-by: Stefano Rivera <stefano@rivera.za.net>
This commit is contained in:
parent
65ed1b7429
commit
678fb82cd5
|
@ -1 +0,0 @@
|
|||
Support Linux perf profiler to see Python calls on RISC-V architecture
|
|
@ -13206,8 +13206,6 @@ case $PLATFORM_TRIPLET in #(
|
|||
perf_trampoline=yes ;; #(
|
||||
aarch64-linux-gnu) :
|
||||
perf_trampoline=yes ;; #(
|
||||
riscv64-linux-gnu) :
|
||||
perf_trampoline=yes ;; #(
|
||||
*) :
|
||||
perf_trampoline=no
|
||||
;;
|
||||
|
|
|
@ -3699,7 +3699,6 @@ AC_MSG_CHECKING([perf trampoline])
|
|||
AS_CASE([$PLATFORM_TRIPLET],
|
||||
[x86_64-linux-gnu], [perf_trampoline=yes],
|
||||
[aarch64-linux-gnu], [perf_trampoline=yes],
|
||||
[riscv64-linux-gnu], [perf_trampoline=yes],
|
||||
[perf_trampoline=no]
|
||||
)
|
||||
AC_MSG_RESULT([$perf_trampoline])
|
||||
|
|
Loading…
Reference in New Issue