diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-13 23:25:57 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-13 23:25:57 -0400 |
commit | ed8fac66ad0f2e3f1a07dae555ad6b0016573738 (patch) | |
tree | cd058e669472de6d8bf154acdf562f2855b9a775 /src/sys/arch/amd64/Makefile | |
parent | 1e5ff2f9b76639321b6ea165cb3508dc47135144 (diff) |
build: Link with kernel libstring
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/arch/amd64/Makefile')
-rw-r--r-- | src/sys/arch/amd64/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sys/arch/amd64/Makefile b/src/sys/arch/amd64/Makefile index f4f4f48..6bb723b 100644 --- a/src/sys/arch/amd64/Makefile +++ b/src/sys/arch/amd64/Makefile @@ -13,7 +13,7 @@ ASMOBJECTS = $(ASMFILES:.S=.S.o) DEPS = $(CFILES:.c=.d) ASMDEPS = $(ASMFILES:.S=.S.d) OBJECTS = $(CFILES:%.c=%.o) -LD_FLAGS = -Tconf/sys.ld -L../../target -lkern +LD_FLAGS = -Tconf/sys.ld -L../../target -lkern -lstring .PHONY: all all: $(OBJECTS) $(ASMOBJECTS) |