We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29432f9 commit b2b5679Copy full SHA for b2b5679
pyproject.toml
@@ -167,5 +167,14 @@ before-all = [
167
"apk add libintl",
168
169
# Install Memray's other build and test dependencies
170
- "apk add --update libunwind-dev lz4-dev"
+ "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",
180
]
0 commit comments