11 lines
239 B
Bash
Raw Permalink Normal View History

2023-01-13 12:56:54 +04:00
#!/bin/sh -x
if [ `uname` = Darwin ]; then
brew install \
x86_64-elf-binutils x86_64-elf-gcc \
2025-01-18 16:01:27 +04:00
x86_64-elf-gdb qemu lld
2023-01-13 12:56:54 +04:00
elif [ `uname` = Linux ]; then
sudo apt-get update
sudo apt-get install qemu-system-x86
fi