From: HimbeerserverDE Date: Fri, 16 Sep 2022 14:07:48 +0000 (+0200) Subject: Remove unneeded --emit flag X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=8636d53d0d2f8d40baab84dd4a3e60731ebda9f6;p=loadnothing.git Remove unneeded --emit flag --- diff --git a/Makefile b/Makefile index 360f67c..ec74fc8 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ magic.bin: echo -en "\x55\xAA" > magic.bin stage2/target/x86-loadnothing/release/stage2: stage2/src/main.rs - cd stage2 && cargo rustc --release -- --emit=obj -C link-arg=-Ttext=0x7e00 -C link-arg=-Tdata=0x7e00 -C link-arg=--oformat=binary + cd stage2 && cargo rustc --release -- -C link-arg=-Ttext=0x7e00 -C link-arg=-Tdata=0x7e00 -C link-arg=--oformat=binary nothing.img: magic.bin stage2/target/x86-loadnothing/release/stage2 stage1/boot.bin dd if=/dev/zero of=nothing.img bs=32M count=1