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 e302469 commit 55cf38eCopy full SHA for 55cf38e
Cross.toml
@@ -1,9 +1,14 @@
1
[build]
2
pre-build = [
3
- "apt-get update && apt-get -y install gdb"
+ "apt-get update && apt-get -y install wget build-essential libgmp-dev libmpfr-dev",
4
+ "cd /tmp && curl https://sourceware.org/pub/gdb/releases/gdb-16.3.tar.gz -o /tmp/gdb-16.3.tar.gz",
5
+ "cd /tmp && tar -xf gdb-16.3.tar.gz",
6
+ "cd /tmp/gdb-16.3 && ./configure --prefix=/usr/local",
7
+ "cd /tmp/gdb-16.3 && make -j$(nproc)",
8
+ "cd /tmp/gdb-16.3 && make install",
9
]
10
11
[build.env]
12
passthrough = [
13
"TARGET_TRIPLE", # Some tests invoke Cargo directly and need this to run correctly
-]
14
+]
0 commit comments