aboutsummaryrefslogtreecommitdiff
path: root/i686
diff options
context:
space:
mode:
Diffstat (limited to 'i686')
-rw-r--r--i686/toolchain.mk10
1 files changed, 10 insertions, 0 deletions
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
+
+