mempool: fix slow allocation of large mempools
[dpdk.git] / meson.build
index c5a3dda..3b7a2e7 100644 (file)
@@ -7,10 +7,16 @@ project('DPDK', 'C',
        version: run_command(find_program('cat', 'more'),
                files('VERSION')).stdout().strip(),
        license: 'BSD',
-       default_options: ['buildtype=release', 'default_library=static'],
+       default_options: ['buildtype=debugoptimized',
+                       'default_library=static'],
        meson_version: '>= 0.47.1'
 )
 
+# for default "debugoptimized" builds override optimization level 2 with 3
+if get_option('buildtype') == 'debugoptimized'
+       add_project_arguments('-O3', language: 'c')
+endif
+
 # set up some global vars for compiler, platform, configuration, etc.
 cc = meson.get_compiler('c')
 dpdk_conf = configuration_data()
@@ -22,6 +28,7 @@ dpdk_extra_ldflags = []
 dpdk_app_link_libraries = []
 dpdk_libs_disabled = []
 dpdk_drvs_disabled = []
+abi_version_file = files('ABI_VERSION')
 
 # configure the build, and make sure configs here and in config folder are
 # able to be included in any file. We also store a global array of include dirs