Compile firmware with -DNOCONSOLE

This commit is contained in:
Michael Cardell Widerkrantz 2022-10-07 11:19:53 +02:00
parent c90771fe19
commit df7a26c28c
No known key found for this signature in database
GPG Key ID: D3DB3DDF57E704E5

View File

@ -34,7 +34,7 @@ CC = clang-14
CFLAGS = -target riscv32-unknown-none-elf -march=rv32imc -mabi=ilp32 \
-static -std=gnu99 -O2 -ffast-math -fno-common -fno-builtin-printf \
-fno-builtin-putchar -nostdlib -mno-relax -Wall -flto
-fno-builtin-putchar -nostdlib -mno-relax -Wall -flto -DNOCONSOLE
AS = clang-14
ASFLAGS = -target riscv32-unknown-none-elf -march=rv32imc -mabi=ilp32 -mno-relax