Skip to content

Commit a131863

Browse files
committed
gh-152769: Fix perf_trampoline check for musl in configure.ac
1 parent fd91971 commit a131863

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3871,10 +3871,10 @@ dnl perf trampoline is Linux and macOS specific and requires an arch-specific
38713871
dnl trampoline in assembly.
38723872
AC_MSG_CHECKING([perf trampoline])
38733873
AS_CASE([$PLATFORM_TRIPLET],
3874-
[x86_64-linux-gnu], [perf_trampoline=yes],
3875-
[aarch64-linux-gnu], [perf_trampoline=yes],
38763874
[x86_64-linux-gnu], [perf_trampoline=yes],
38773875
[x86_64-linux-musl], [perf_trampoline=yes],
3876+
[aarch64-linux-gnu], [perf_trampoline=yes],
3877+
[aarch64-linux-musl], [perf_trampoline=yes],
38783878
[darwin], [AS_CASE([$MACOSX_DEPLOYMENT_TARGET],
38793879
[[10.[0-9]|10.1[0-1]]], [perf_trampoline=no],
38803880
[perf_trampoline=yes]

0 commit comments

Comments
 (0)