diff options
author | 2021-03-14 03:16:02 +0200 | |
---|---|---|
committer | 2021-03-14 03:50:37 +0200 | |
commit | 56f20e30636c16fd14205ba7c29cf8089caa1260 (patch) | |
tree | 24f948294d6a28a5ea47c983e1cade078357b3ef /meson.build | |
parent | c68444ff76eff88fbfa63a3ddbd6b9ce72337159 (diff) | |
download | algos-ld1-56f20e30636c16fd14205ba7c29cf8089caa1260.tar.gz algos-ld1-56f20e30636c16fd14205ba7c29cf8089caa1260.tar.bz2 algos-ld1-56f20e30636c16fd14205ba7c29cf8089caa1260.zip |
revert higher-than-64-bits support.
Too much hassle to actually pretty-print that crap out.
Signed-off-by: Gediminas Jakutis <gediminas@varciai.lt>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build index f378dcc..0b23a41 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('algos ld1', 'c', license : 'LGPL2.1', - default_options : ['c_std=gnu11', 'buildtype=release', 'warning_level=2']) + default_options : ['c_std=gnu11', 'optimization=3', 'b_lto=true', 'debug=false', 'warning_level=3']) deps = [dependency('rin', version : '>= 0.0.4')] @@ -8,9 +8,9 @@ progname = 'alg' add_project_arguments('-D', '_GNU_SOURCE', language : 'c') add_project_arguments('-fplan9-extensions', language : 'c') -add_project_arguments('-D', 'entry_field_size=' + get_option('data-bitness'), language : 'c') +add_project_arguments('-D', 'entry_field_size=' + get_option('data-bits'), language : 'c') -if get_option('data-signed').enabled() +if get_option('data-sign').enabled() add_project_arguments('-D', 'entry_field_signed', language : 'c') endif |