mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-16 00:08:58 +03:00
Closes: https://bugs.gentoo.org/962353 Bug: https://bugs.gentoo.org/795312 Bug: https://bugs.gentoo.org/905089 Bug: https://bugs.gentoo.org/918550 Signed-off-by: Zac Medico <zmedico@gentoo.org>
21 lines
564 B
Diff
21 lines
564 B
Diff
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)
|