aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer@dabbelt.com>2017-05-23 08:33:20 -0700
committerPalmer Dabbelt <palmer@dabbelt.com>2017-05-23 08:33:48 -0700
commit40d2eabbbaa03873cac5b0761df4a780c3694c08 (patch)
treea2f572e826914b9b61c77280b2d9dd6df0a56035 /Makefile.in
parentb3caeee9858b3417d4110b921305c441d3c87653 (diff)
downloadriscv-isa-sim-40d2eabbbaa03873cac5b0761df4a780c3694c08.zip
riscv-isa-sim-40d2eabbbaa03873cac5b0761df4a780c3694c08.tar.gz
riscv-isa-sim-40d2eabbbaa03873cac5b0761df4a780c3694c08.tar.bz2
Disable -Werror when building
This has a tendency to blow up on other platforms.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 01af91b..c09fc50 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -84,9 +84,9 @@ VPATH := $(addprefix $(src_dir)/, $(sprojs_enabled))
CC := @CC@
CXX := @CXX@
-CFLAGS += @CFLAGS@ -DPREFIX=\"$(prefix)\" -Werror
+CFLAGS += @CFLAGS@ -DPREFIX=\"$(prefix)\"
CPPFLAGS += @CPPFLAGS@
-CXXFLAGS += @CXXFLAGS@ -DPREFIX=\"$(prefix)\" -Werror
+CXXFLAGS += @CXXFLAGS@ -DPREFIX=\"$(prefix)\"
COMPILE := $(CXX) -fPIC -MMD -MP $(CPPFLAGS) $(CXXFLAGS) \
$(sprojs_include)
COMPILE_C := $(CC) -fPIC -MMD -MP $(CPPFLAGS) $(CFLAGS) \