summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-06 19:33:13 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-06 19:33:13 +0100
commit68ca871449f10b3b8a5cf8c52bba9cdd8d8af089 (patch)
tree34fa273cb5f045417b01265659177ecfff101b1c /src
parente9eb93ced36628f2c111b96c4916bb649636e71c (diff)
[CHORE] CI and Build fixes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src')
-rw-r--r--src/arm64/makefile2
-rw-r--r--src/rv64/ci.make2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arm64/makefile b/src/arm64/makefile
index 9460b98..ce9eb8b 100644
--- a/src/arm64/makefile
+++ b/src/arm64/makefile
@@ -52,7 +52,7 @@ firmware-compile:
$(CC) $(FLAGS) $(C_SRC)
$(AS) arm64-start-context.S -o arm64-start-context.o
$(AS) arm64-boot.S -o arm64-boot.o
-
+
# launch qemu rule
.PHONY: run
diff --git a/src/rv64/ci.make b/src/rv64/ci.make
index d524fee..d98d085 100644
--- a/src/rv64/ci.make
+++ b/src/rv64/ci.make
@@ -14,7 +14,7 @@ FLAGS=-D__COMPILE_RISCV__ -I../../ -Wall -c -nostdlib -ffreestanding -fno-builti
C_SRC= $(wildcard *.s) $(wildcard *.c) $(wildcard ../*.c) -c
CXX=riscv64-unknown-elf-g++
-CXX_SRC= $(wildcard *.cc) $(wildcard ../*.cc) -c
+CXX_SRC= $(wildcard *.cpp) $(wildcard ../*.cc) -c
LD=riscv64-unknown-elf-ld
OBJ=*.o