From 22222563b5b3b0e624e03ea455d809121b75a995 Mon Sep 17 00:00:00 2001
From: Paul Schulze
Date: Tue, 6 Dec 2022 08:24:44 +0100
Subject: [PATCH] [build] don't build native and build for 32/64 bit target
---
.cargo/config.toml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.cargo/config.toml b/.cargo/config.toml
index 5b556a6..235cdfc 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -1,3 +1,3 @@
[build]
-#target = "x86_64-unknown-linux-musl"
-rustflags = ["-C", "target-feature=+crt-static", "-C", "target-cpu=native"]
+target = ["x86_64-unknown-linux-gnu", "i686-unknown-linux-gnu"]
+rustflags = ["-C", "target-feature=+crt-static"]