Browse Source

We need to remove Werror because compilers are adding more and more checks for potentially-bad-things, which in practice are impractical to fix

Caleb James DeLisle 1 year ago
parent
commit
2daf59e2ca
1 changed files with 1 additions and 1 deletions
  1. 1 1
      node_build/make.js

+ 1 - 1
node_build/make.js

@@ -41,7 +41,7 @@ Builder.configure({
         '-std=c99',
         '-Wall',
         '-Wextra',
-        '-Werror',
+        // '-Werror', // This is not practical because compilers increase their warnings over time.
         '-Wno-pointer-sign',
         '-Wmissing-prototypes',
         '-pedantic',