From 7c36d5406cf726596a56e77f4c95a4469ffbe267 Mon Sep 17 00:00:00 2001 From: HimbeerserverDE Date: Sun, 11 Sep 2022 19:29:34 +0200 Subject: [PATCH] cargo build without explicit target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 65f4596..4d3e41f 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ magic.bin: echo -en "\x55\xAA" > magic.bin stage2/target/x86_64-unknown-none/debug/stage2: - cd stage2 && cargo build --target x86_64-unknown-none + cd stage2 && cargo build nothing.img: magic.bin stage1/boot.bin stage2/target/x86_64-unknown-none/debug/stage2 dd if=/dev/zero of=nothing.img bs=2M count=1 -- 2.44.0