Install lld on macOS.

This commit is contained in:
Alexander Myltsev 2025-01-18 16:01:27 +04:00
parent 0d541cf179
commit 4fcdb1cdd8
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: install llvm
run: brew install llvm x86_64-elf-binutils x86_64-elf-gcc
run: brew install llvm x86_64-elf-binutils x86_64-elf-gcc lld
- name: LLVM build
run: make LLVM=on image.bin
windows:

View File

@ -3,7 +3,7 @@
if [ `uname` = Darwin ]; then
brew install \
x86_64-elf-binutils x86_64-elf-gcc \
x86_64-elf-gdb qemu
x86_64-elf-gdb qemu lld
elif [ `uname` = Linux ]; then
sudo apt-get update
sudo apt-get install qemu-system-x86