diff options
author | David Robillard <d@drobilla.net> | 2021-09-15 23:07:06 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-09-16 15:04:18 -0400 |
commit | dcd887eb8326ec195149c7fd6711ddb715c4ad1f (patch) | |
tree | 48ee1bf8f6c02158527cb5eecee02ffc44f0c327 /meson.build | |
parent | 1f5c42737fff4f222be0edb628fede2eb4dfeb91 (diff) | |
download | zix-dcd887eb8326ec195149c7fd6711ddb715c4ad1f.tar.gz zix-dcd887eb8326ec195149c7fd6711ddb715c4ad1f.tar.bz2 zix-dcd887eb8326ec195149c7fd6711ddb715c4ad1f.zip |
Add a simple bump pointer allocator
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meson.build b/meson.build index d7ba9d0..45009c4 100644 --- a/meson.build +++ b/meson.build @@ -66,7 +66,7 @@ if get_option('strict') '-Wformat-signedness', '-Wformat-truncation=2', '-Wformat=2', - '-Wframe-larger-than=1024', + '-Wframe-larger-than=2048', '-Wimplicit-fallthrough=2', '-Winit-self', # '-Winline', @@ -86,7 +86,7 @@ if get_option('strict') '-Wshift-overflow=2', '-Wsizeof-array-argument', '-Wstack-protector', - '-Wstack-usage=1024', + '-Wstack-usage=2048', '-Wstrict-aliasing=3', # '-Wstrict-overflow=5', '-Wstringop-overflow=3', @@ -184,6 +184,7 @@ sources = [ 'src/allocator.c', 'src/bitset.c', 'src/btree.c', + 'src/bump_allocator.c', 'src/digest.c', 'src/hash.c', 'src/ring.c', |