From 4fcdb1cdd8bec12f6c770cab7510c329ced3bc0a Mon Sep 17 00:00:00 2001 From: Alexander Myltsev Date: Sat, 18 Jan 2025 16:01:27 +0400 Subject: [PATCH] Install lld on macOS. --- .github/workflows/build.yml | 2 +- setup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e420c20..37c741a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: diff --git a/setup.sh b/setup.sh index d51750f..ee4b583 100755 --- a/setup.sh +++ b/setup.sh @@ -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