aboutsummaryrefslogtreecommitdiff
path: root/i686
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2023-02-05 10:16:20 +0200
committeraqua <aqua@iserlohn-fortress.net>2023-02-05 10:16:20 +0200
commita5de90c48a1800c865285945aadd019fa07c7ad8 (patch)
treea2e476f4950aa142019617779f8e0bce4a01305c /i686
parentblake2: use makefiles instead of meson.build (diff)
downloadkernel-a5de90c48a1800c865285945aadd019fa07c7ad8.tar.xz
Split Makefile
- Makefile: configure, doc and test targets - Makefile.all: info, build and run targets - rules.mk: add base test targets
Diffstat (limited to 'i686')
-rw-r--r--i686/toolchain.mk30
1 files changed, 23 insertions, 7 deletions
diff --git a/i686/toolchain.mk b/i686/toolchain.mk
index ae2fb35..e97443f 100644
--- a/i686/toolchain.mk
+++ b/i686/toolchain.mk
@@ -3,18 +3,34 @@ ARCH=i686
# define compiler, linker, archiver and strip and their flags
# FIXME: cpp threadsafe statics
AS := i686-elf-as
+
CC := i686-elf-gcc
-CXX := i686-elf-g++
+CCID := $(shell ${CC} --version | head -n1)
CFLAGS := -Wall -Wextra -Wpedantic -Wshadow -Wconversion -fanalyzer -ffreestanding -std=gnu11 \
- -mgeneral-regs-only
-CFLAGS += $(shell echo ${CONFIG_CFLAGS})
+ -mgeneral-regs-only \
+ $(shell echo ${CONFIG_CFLAGS})
+
+CXX := i686-elf-g++
+CXXID := $(shell ${CXX} --version | head -n1)
CXXFLAGS := -Wall -Wextra -Wpedantic -Wshadow -Wconversion -ffreestanding -std=c++17 \
- -mgeneral-regs-only -fno-use-cxa-atexit -fno-threadsafe-statics -fno-exceptions -fno-rtti
-CXXFLAGS += $(shell echo ${CONFIG_CXXFLAGS})
+ -mgeneral-regs-only -fno-use-cxa-atexit -fno-threadsafe-statics -fno-exceptions -fno-rtti \
+ $(shell echo ${CONFIG_CXXFLAGS})
+
LD := i686-elf-ld
-LDFLAGS := -static -nostdlib
-LDFLAGS += $(shell echo ${CONFIG_LDFLAGS})
+LDID := $(shell ${LD} --version | head -n1)
+LDFLAGS := -static -nostdlib \
+ $(shell echo ${CONFIG_LDFLAGS})
+
AR := i686-elf-ar
ARFLAGS := -crus
+
STRIP := i686-elf-strip
+# define compiler and flags for test targets
+TEST_CXX := g++
+TEST_CXXFLAGS := -Wall -Wextra -Wpedantic -Werror=shadow -Werror=conversion -g -Og \
+ $(shell pkg-config --cflags --libs gtest gtest_main gmock)
+
+# emulator name and flags
+QEMU := qemu-system-i386 -accel kvm -machine pc
+