blob: 6488342b889bd2c7b7bdc826a750cdac1c66d03d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
diff -rauN a/config.toml b/config.toml
--- a/config.toml 2019-09-09 08:53:02.796809788 +0200
+++ b/config.toml 2019-09-09 08:53:42.249120606 +0200
@@ -2,7 +2,7 @@
link-shared = true
[build]
-target = ["x86_64-unknown-linux-gnu"] # defaults to just the build triple
+target = ["i686-unknown-linux-gnu"] # defaults to just the build triple
cargo = "/usr/bin/cargo"
rustc = "/usr/bin/rustc"
python = "python"
@@ -19,11 +19,11 @@
# https://github.com/rust-lang/rust/issues/47745
codegen-units = 1
-debuginfo-level = 2
+debuginfo-level = 1
channel = "stable"
rpath = false
-[target.x86_64-unknown-linux-gnu]
+[target.i686-unknown-linux-gnu]
llvm-config = "/usr/bin/llvm-config"
|