aboutsummaryrefslogtreecommitdiff
path: root/build_shared_library.py
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2015-06-21 18:33:46 +0100
committerMark Haines <mark.haines@matrix.org>2015-06-21 18:33:46 +0100
commit0ca3797d2d065e63dc5806ba014bcb742b09c5d7 (patch)
tree4b73bb8c383c371403e79ff8790c0d07f79573aa /build_shared_library.py
parent9cd53394e73c51efdf690d02bcee69a7a283681a (diff)
Make the 'random' numbers different for each key in the tests
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 82420f0..1081846 100755
--- a/build_shared_library.py
+++ b/build_shared_library.py
@@ -22,7 +22,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++ -O0 -g -Iinclude -Ilib --std=c++11 --shared -fPIC".split()
compile_args += source_files
library = "build/libaxolotl.so"