extern
This commit is contained in:
parent
d1d1c88934
commit
95871ff6bf
8 changed files with 117 additions and 118 deletions
14
boot.sh
14
boot.sh
|
@ -1,12 +1,10 @@
|
|||
mkdir -p build && cd build &&
|
||||
cat ../boot-lib.h ../boot.c | sed '/^#/d' > boot-all.c &&
|
||||
gcc ../boot.c ../boot-lib.c -o gcc.out &&
|
||||
./gcc.out < boot-all.c > boot1.s &&
|
||||
riscv64-linux-gnu-gcc-12 -static boot1.s ../boot-lib.c -o boot1.out &&
|
||||
qemu-riscv64 boot1.out < boot-all.c > boot2.s &&
|
||||
riscv64-linux-gnu-gcc-12 -static boot2.s ../boot-lib.c -o boot2.out &&
|
||||
qemu-riscv64 boot2.out < boot-all.c > boot3.s
|
||||
gcc ../boot.c -o gcc.out &&
|
||||
./gcc.out < ../boot.c > boot1.s &&
|
||||
riscv64-linux-gnu-gcc-12 -static boot1.s -o boot1.out &&
|
||||
qemu-riscv64 boot1.out < ../boot.c > boot2.s &&
|
||||
riscv64-linux-gnu-gcc-12 -static boot2.s -o boot2.out &&
|
||||
qemu-riscv64 boot2.out < ../boot.c > boot3.s
|
||||
cmp --silent boot1.s boot2.s && echo "boot1.s == boot2.s" || echo "boot1.s != boot2.s"
|
||||
cmp --silent boot2.s boot3.s && echo "boot2.s == boot3.s" || echo "boot2.s != boot3.s"
|
||||
cmp --silent boot1.s boot3.s && echo "boot1.s == boot3.s" || echo "boot1.s != boot3.s"
|
||||
rm boot-all.c
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue