summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/rv64.yml2
-rw-r--r--src/arm64/makefile2
-rw-r--r--src/rv64/ci.make2
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/rv64.yml b/.github/workflows/rv64.yml
index d9aaffb..242e200 100644
--- a/.github/workflows/rv64.yml
+++ b/.github/workflows/rv64.yml
@@ -15,5 +15,5 @@ jobs:
- uses: actions/checkout@v4
- name: Install Packages
run: sudo apt update && sudo apt install gcc-riscv64-unknown-elf
- - name: Build FW (ARM64)
+ - name: Build FW (RV64)
run: cd src && cd rv64 && make -f ci.make all
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