summaryrefslogtreecommitdiffstats
path: root/src/context.rs
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2021-09-25 21:53:33 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2021-09-25 21:53:33 +0200
commit1d59ffec4a1194cb012c82cf60542b7fde23b5dc (patch)
tree21b450981c1dce5b4310fed2b0fcbcd656eafc88 /src/context.rs
parent251c207896760c2886b757fc8ef56c518849ecba (diff)
downloadrebel-1d59ffec4a1194cb012c82cf60542b7fde23b5dc.tar
rebel-1d59ffec4a1194cb012c82cf60542b7fde23b5dc.zip
context: fix karch of build platform
Diffstat (limited to 'src/context.rs')
-rw-r--r--src/context.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context.rs b/src/context.rs
index bb226f5..5c126a9 100644
--- a/src/context.rs
+++ b/src/context.rs
@@ -83,7 +83,7 @@ impl Context {
pub fn new(tasks: HashMap<TaskID, TaskDef>) -> Self {
let build_platform = Rc::new(Arg::Platform {
gnu_triplet: "x86_64-linux-gnu".to_string(),
- karch: "x86".to_string(),
+ karch: "x86_64".to_string(),
prefix: "/opt/toolchain".to_string(),
});
let host_platform = Arg::Platform {