summaryrefslogtreecommitdiff
path: root/dev-lang/jerryscript/files/jerryscript-3.0.0-no-werror.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/jerryscript/files/jerryscript-3.0.0-no-werror.patch')
-rw-r--r--dev-lang/jerryscript/files/jerryscript-3.0.0-no-werror.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/dev-lang/jerryscript/files/jerryscript-3.0.0-no-werror.patch b/dev-lang/jerryscript/files/jerryscript-3.0.0-no-werror.patch
new file mode 100644
index 000000000000..b7e58e96de98
--- /dev/null
+++ b/dev-lang/jerryscript/files/jerryscript-3.0.0-no-werror.patch
@@ -0,0 +1,20 @@
+https://bugs.gentoo.org/840263
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -176,7 +176,6 @@
+ macro(jerry_add_compile_warnings)
+ foreach(_warning ${ARGV})
+ jerry_add_compile_flags(-W${_warning})
+- jerry_add_compile_flags(-Werror=${_warning})
+ endforeach()
+ endmacro()
+
+@@ -224,7 +223,7 @@
+ if(NOT "${PLATFORM}" STREQUAL "WINDOWS")
+ jerry_add_compile_warnings(conversion)
+ endif()
+- jerry_add_compile_flags(-Wno-stack-protector -Wno-attributes -Werror)
++ jerry_add_compile_flags(-Wno-stack-protector -Wno-attributes)
+ endif()
+
+ if(USING_GCC)