Skip to content

Commit b2b5679

Browse files
committed
musllinux wheels use new libunwind
1 parent 29432f9 commit b2b5679

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

pyproject.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,5 +167,14 @@ before-all = [
167167
"apk add libintl",
168168

169169
# Install Memray's other build and test dependencies
170-
"apk add --update libunwind-dev lz4-dev"
170+
"apk add --update lz4-dev",
171+
172+
# Build libunwind from source
173+
"cd /",
174+
"LIBUNWIND_VERS=1.8.3",
175+
"curl -LO https://github.com/libunwind/libunwind/releases/download/v$LIBUNWIND_VERS/libunwind-$LIBUNWIND_VERS.tar.gz",
176+
"tar xf libunwind-$LIBUNWIND_VERS.tar.gz",
177+
"cd libunwind-$LIBUNWIND_VERS",
178+
"./configure --disable-minidebuginfo",
179+
"make install",
171180
]

0 commit comments

Comments
 (0)