From 01acca4f1e8958cb74102809499b9dd09dde12e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=B5=E3=82=A4=E3=83=90=E3=83=BC=E3=81=8B=E3=81=84?= =?UTF-8?q?=E3=81=A0?= <118712366+cyberkaida@users.noreply.github.com> Date: Tue, 5 Dec 2023 23:21:52 +0000 Subject: [PATCH] Fix typo --- 02-running-code/solutions/02-02-asm-stub/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-running-code/solutions/02-02-asm-stub/Makefile b/02-running-code/solutions/02-02-asm-stub/Makefile index b22be99..885e77e 100644 --- a/02-running-code/solutions/02-02-asm-stub/Makefile +++ b/02-running-code/solutions/02-02-asm-stub/Makefile @@ -2,7 +2,7 @@ # so we can change toolchains for cross compilation # Base of the LLVM installation -LLVM_HOME ?= $(shell llvm-config -prefix) +LLVM_HOME ?= $(shell llvm-config --prefix) # Check that LLVM_HOME is set ifeq ($(LLVM_HOME),) $(error LLVM_HOME is not set. Check that llvm-config is on your PATH or set the LLVM_HOME environment variable)