[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:
Miss Islington (bot) 2024-07-04 10:57:52 +02:00 committed by GitHub
parent 65ed1b7429
commit 678fb82cd5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 4 deletions

View File

@ -1 +0,0 @@
Support Linux perf profiler to see Python calls on RISC-V architecture

2
configure generated vendored
View File

@ -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
;;

View File

@ -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])