Disable -Werror for now

Without having __riscv_flen defined we get multiple warinings. But
defining it causes the startup code to contain floating point instructions.
This results in a exception right after booting.

See startup_gd32vf103.S lines 289-294 should open a PR at nuclei sdk
This commit is contained in:
Stefan Kerkmann 2021-07-10 11:21:24 +02:00
parent 19b971cb24
commit ddb83787a0
1 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,6 @@ CFLAGS += \
-Wstrict-overflow \
-Wall \
-Wextra \
-Werror \
-Wfatal-errors \
-Werror-implicit-function-declaration \
-Wfloat-equal \
@ -102,7 +101,8 @@ CFLAGS += \
-Wmissing-format-attribute \
-Wunreachable-code \
-Wcast-align \
-Wcast-function-type
-Wcast-function-type \
# -Werror disable for now\
# Debugging/Optimization
ifeq ($(DEBUG), 1)