From: Palmer Dabbelt Date: Tue, 23 May 2017 15:33:20 +0000 (-0700) Subject: Disable -Werror when building X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=40d2eabbbaa03873cac5b0761df4a780c3694c08;p=riscv-isa-sim.git Disable -Werror when building This has a tendency to blow up on other platforms. --- 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) \