build: use integers for numerical options
authorLuca Boccassi <bluca@debian.org>
Tue, 26 Feb 2019 17:46:36 +0000 (17:46 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Wed, 27 Feb 2019 11:28:03 +0000 (12:28 +0100)
Now that the minimum Meson version has been bumped past 0.45 we can use
integer as an option type directly.

Signed-off-by: Luca Boccassi <bluca@debian.org>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
meson_options.txt

index 79dade5..dc7346f 100644 (file)
@@ -22,9 +22,9 @@ option('machine', type: 'string', value: 'native',
        description: 'set the target machine type')
 option('max_ethports', type: 'string', value: '32',
        description: 'maximum number of Ethernet devices')
-option('max_lcores', type: 'string', value: '128',
+option('max_lcores', type: 'integer', value: 128,
        description: 'maximum number of cores/threads supported by EAL')
-option('max_numa_nodes', type: 'string', value: '4',
+option('max_numa_nodes', type: 'integer', value: 4,
        description: 'maximum number of NUMA nodes supported by EAL')
 option('per_library_versions', type: 'boolean', value: true,
        description: 'true: each lib gets its own version number, false: DPDK version used for each lib')