summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorStefan Kerkmann <[email protected]>2021-07-10 11:21:24 +0200
committerStefan Kerkmann <[email protected]>2021-08-03 20:00:39 +0200
commitddb83787a00c20db8f92b00dc78c8c1ee972c489 (patch)
tree58286cd03085aa690078423f89fd92feea7373bc /examples
parent19b971cb24368148cf3d298c506aad39569fe2e2 (diff)
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
Diffstat (limited to 'examples')
-rw-r--r--examples/make.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/make.mk b/examples/make.mk
index 9daf60e35..70ce77b41 100644
--- a/examples/make.mk
+++ b/examples/make.mk
@@ -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)