summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
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