From 138c0efa33990ae16d9d950181d65d8b3dfc60c9 Mon Sep 17 00:00:00 2001 From: aqua Date: Fri, 28 Oct 2022 16:40:46 +0300 Subject: makefile: add libk target --- i686/toolchain.mk | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 i686/toolchain.mk (limited to 'i686') diff --git a/i686/toolchain.mk b/i686/toolchain.mk new file mode 100644 index 0000000..884369c --- /dev/null +++ b/i686/toolchain.mk @@ -0,0 +1,10 @@ +# define compiler, linker, archiver and strip and their flags +# +CC = i686-elf-gcc +CCFLAGS = -Wall -Wextra -Wpedantic -fanalyzer -ffreestanding +LD = i686-elf-ld +LDFLAGS = -nostdlib +AR = i686-elf-ar +STRIP = i686-elf-strip + + -- cgit v1.2.1