From e0e871c73079e8b299267fb577108dd2b23f2f92 Mon Sep 17 00:00:00 2001 From: Michael Cardell Widerkrantz Date: Tue, 25 Apr 2023 15:52:44 +0200 Subject: [PATCH] Include debug symbols in the ELF --- hw/application_fpga/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/application_fpga/Makefile b/hw/application_fpga/Makefile index 0446a33..7a1db80 100644 --- a/hw/application_fpga/Makefile +++ b/hw/application_fpga/Makefile @@ -36,7 +36,7 @@ CC = clang CFLAGS = -target riscv32-unknown-none-elf -march=rv32iczmmul -mabi=ilp32 \ -static -std=gnu99 -O2 -ffast-math -fno-common -fno-builtin-printf \ -fno-builtin-putchar -fno-builtin-memcpy -nostdlib -mno-relax -Wall \ - -flto -DNOCONSOLE + -flto -g -DNOCONSOLE AS = clang ASFLAGS = -target riscv32-unknown-none-elf -march=rv32iczmmul -mabi=ilp32 -mno-relax