From 343326296b80eca410e6d6ee67c35d9d041789ea Mon Sep 17 00:00:00 2001 From: Steffen Hanikel Date: Thu, 20 Mar 2014 12:17:12 +0100 Subject: [PATCH] Removede Werror Werror should not be enabled when distributing source code. Werror is very helpful when developing code, but different compiler versions could easily break builds. --- rebar.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rebar.config b/rebar.config index f992d04..fb26d75 100644 --- a/rebar.config +++ b/rebar.config @@ -7,7 +7,7 @@ ]}. {port_env, [ - {".*", "CXXFLAGS", "$CXXFLAGS -g -Wall -Werror -O3"}, + {".*", "CXXFLAGS", "$CXXFLAGS -g -Wall -O3"}, {"(linux|solaris|freebsd|netbsd|openbsd|dragonfly|darwin)", "LDFLAGS", "$LDFLAGS -lstdc++"},