aboutsummaryrefslogtreecommitdiff
path: root/build_shared_library.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2016-04-26 18:10:13 +0100
committerRichard van der Hoff <richard@matrix.org>2016-04-26 18:10:13 +0100
commit11dbf2aab3e9a65148a40ac6b5b1124929344c1a (patch)
tree6550798794f5df40bcd86cd151efcc2027b0cca3 /build_shared_library.py
parent9b010290a49243e5867dd9d4c93784a345fb2637 (diff)
Fix a bunch of compiler warnings, and turn on warnings.
Diffstat (limited to 'build_shared_library.py')
-rwxr-xr-xbuild_shared_library.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_shared_library.py b/build_shared_library.py
index ed8f93f..911c7b3 100755
--- a/build_shared_library.py
+++ b/build_shared_library.py
@@ -23,7 +23,7 @@ if not os.path.exists("build"):
source_files = glob.glob("src/*.cpp")
-compile_args = "g++ -O3 -Iinclude -Ilib --std=c++11 --shared -fPIC".split()
+compile_args = "g++ -Wall -O3 -Iinclude -Ilib --std=c++11 --shared -fPIC".split()
compile_args += source_files
compile_args += sys.argv[1:]