2025-02-24 11:05:23 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2025-02-26 11:52:05 +02:00
|
|
|
/sbin/mount -t ext2 /dev/vb0p1 /mnt
|
2025-02-24 11:05:23 +02:00
|
|
|
/mnt/bin/clang -cc1as -filetype obj -main-file-name test.S -target-cpu x86-64 -mrelocation-model pic -triple x86_64-unknown-yggdrasil -o /test.o /etc/test.S
|
2025-02-26 11:52:05 +02:00
|
|
|
/mnt/bin/ld.lld -nostdlib -o /test /test.o
|
2025-02-24 11:05:23 +02:00
|
|
|
/bin/ls -lh /
|
2025-02-26 11:52:05 +02:00
|
|
|
|