--- a/cmake/compiler_settings.cmake +++ b/cmake/compiler_settings.cmake @@ -53,7 +53,7 @@ macro(set_gcc_flags) endmacro() macro(set_gcc_warnings) - list(APPEND AWS_COMPILER_WARNINGS "-Wall" "-Werror" "-pedantic" "-Wextra") + list(APPEND AWS_COMPILER_WARNINGS "-Wall" "-pedantic" "-Wextra") if(COMPILER_CLANG) if(PLATFORM_ANDROID) # when using clang with libc and API lower than 21 we need to include Android support headers and ignore the gnu-include-next warning. ='/'>index : guix
Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/tests/print.scm
AgeCommit message (Collapse)Author
2020-04-20tests: Update expected values for package->code.Ricardo Wurmus
Reported by janneke on IRC. * tests/print.scm: Update expected package definitions produced by package->code.
2019-06-07import: print: Honor the outputs of inputs (!).Ludovic Courtès
Fixes <http://bugs.gnu.org/35893>. Reported by Jesse Gibbons <jgibbons2357@gmail.com>. * guix/import/print.scm (package->code)[package-lists->code]: Preserve OUT in the result. * tests/print.scm (define-with-source): New macro. (pkg): Use it. (pkg-source): New variable. (pkg-with-inputs, pkg-with-inputs-source): New variables. ("simple package"): Refer to 'pkg-source'. ("package with inputs"): New test.