mirror of https://github.com/python/cpython
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:
parent
84512c0e7f
commit
ca2e876500
|
@ -1 +0,0 @@
|
||||||
Support Linux perf profiler to see Python calls on RISC-V architecture
|
|
|
@ -1 +0,0 @@
|
||||||
Support Linux perf profiler to see Python calls on RISC-V architecture.
|
|
|
@ -13292,8 +13292,6 @@ case $PLATFORM_TRIPLET in #(
|
||||||
perf_trampoline=yes ;; #(
|
perf_trampoline=yes ;; #(
|
||||||
aarch64-linux-gnu) :
|
aarch64-linux-gnu) :
|
||||||
perf_trampoline=yes ;; #(
|
perf_trampoline=yes ;; #(
|
||||||
riscv64-linux-gnu) :
|
|
||||||
perf_trampoline=yes ;; #(
|
|
||||||
*) :
|
*) :
|
||||||
perf_trampoline=no
|
perf_trampoline=no
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -3709,7 +3709,6 @@ AC_MSG_CHECKING([perf trampoline])
|
||||||
AS_CASE([$PLATFORM_TRIPLET],
|
AS_CASE([$PLATFORM_TRIPLET],
|
||||||
[x86_64-linux-gnu], [perf_trampoline=yes],
|
[x86_64-linux-gnu], [perf_trampoline=yes],
|
||||||
[aarch64-linux-gnu], [perf_trampoline=yes],
|
[aarch64-linux-gnu], [perf_trampoline=yes],
|
||||||
[riscv64-linux-gnu], [perf_trampoline=yes],
|
|
||||||
[perf_trampoline=no]
|
[perf_trampoline=no]
|
||||||
)
|
)
|
||||||
AC_MSG_RESULT([$perf_trampoline])
|
AC_MSG_RESULT([$perf_trampoline])
|
||||||
|
|
Loading…
Reference in New Issue