diff options
author | David Robillard <d@drobilla.net> | 2020-06-14 12:23:43 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-10-27 13:13:59 +0100 |
commit | b3d80af60ff695a9f6feb19d08bba0133aef3fdc (patch) | |
tree | bbc6f557638c9062aae64fd8704ff1f0986a7fda /wscript | |
parent | f7368a5920ce3e8897d4fa716dcc1023abfad19c (diff) | |
download | serd-b3d80af60ff695a9f6feb19d08bba0133aef3fdc.tar.gz serd-b3d80af60ff695a9f6feb19d08bba0133aef3fdc.tar.bz2 serd-b3d80af60ff695a9f6feb19d08bba0133aef3fdc.zip |
Use a manual type-safe stack in SerdWriter
This fixes alignment issues on ARM. Since this stack is just for WriteContext
which has a fixed size, using SerdStack here just made things more confusing
anyway.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -57,7 +57,6 @@ def configure(conf): if Options.options.ultra_strict: autowaf.add_compiler_flags(conf.env, '*', { 'clang': [ - '-Wno-cast-align', '-Wno-covered-switch-default', '-Wno-float-equal', '-Wno-format-nonliteral', @@ -66,7 +65,6 @@ def configure(conf): '-Wno-reserved-id-macro', ], 'gcc': [ - '-Wno-cast-align', '-Wno-float-equal', '-Wno-padded', ], |