From 81429ad8e8daee9bc90e4558525535e4b37dbe5c Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Fri, 5 Mar 2021 21:08:58 +0200 Subject: libk: add int_t min max size constants --- toolchain.makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'toolchain.makefile') diff --git a/toolchain.makefile b/toolchain.makefile index 0631904..ae791c1 100644 --- a/toolchain.makefile +++ b/toolchain.makefile @@ -11,6 +11,7 @@ LD := ld.lld LD_FLAGS := -T linker.ld CXX := clang++ +TEST_CXX := clang++ CXX_FLAGS := -std=c++20 \ -mkernel -ffreestanding -nostdlib -nostdinc -nostdinc++ \ -Wall -Wextra -Werror=pedantic -O2 \ @@ -18,6 +19,7 @@ CXX_FLAGS := -std=c++20 \ -Werror=shadow-all \ -Wold-style-cast -Wconversion \ -Wconsumed +CXX_TEST_FLAGS := -std=c++20 -Wall -Wextra -Werror=pedantic CXX_INCLUDE := $(CURDIR)/libk $(CURDIR)/src $(CURDIR)/drivers CXX_SYSTEM_INCLUDE := $(CURDIR)/grub -- cgit v1.2.1