diff options
author | Richard van der Hoff <richard@matrix.org> | 2016-04-26 18:10:13 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2016-04-26 18:10:13 +0100 |
commit | 11dbf2aab3e9a65148a40ac6b5b1124929344c1a (patch) | |
tree | 6550798794f5df40bcd86cd151efcc2027b0cca3 /javascript/build.py | |
parent | 9b010290a49243e5867dd9d4c93784a345fb2637 (diff) |
Fix a bunch of compiler warnings, and turn on warnings.
Diffstat (limited to 'javascript/build.py')
-rwxr-xr-x | javascript/build.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/javascript/build.py b/javascript/build.py index fb58a2c..f253acb 100755 --- a/javascript/build.py +++ b/javascript/build.py @@ -45,6 +45,7 @@ optimize_opts = os.environ.get("OPTIMIZE_FLAGS", "-O3") compile_args = [emcc] compile_args += optimize_opts.split() +compile_args += ["-Wall"] compile_args += """ -Iinclude -Ilib |