gh-121201: Disable perf_trampoline on riscv64 for now (#121328)

Disable perf_trampoline on riscv64 for now

Until support is added in perf_jit_trampoline.c

gh-120089 was incomplete.
This commit is contained in:
Stefano Rivera 2024-07-03 07:44:34 -07:00 committed by GitHub
parent 84512c0e7f
commit ca2e876500
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 0 additions and 5 deletions

View File

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

View File

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

2
configure generated vendored
View File

@ -13292,8 +13292,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

@ -3709,7 +3709,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])