X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Flibrte_eal%2Fcommon%2Fmeson.build;h=70bd854fec053769b06a898e0c30016f4ed25d6f;hb=e863fe3a13da89787fdf3b5c590101a3c0f10af6;hp=dc9b1d2feb7034ed39a9f469208eec3d4f4ef2c2;hpb=33031608e8f0c64d519ed74960cb743bfcf27e40;p=dpdk.git diff --git a/lib/librte_eal/common/meson.build b/lib/librte_eal/common/meson.build index dc9b1d2feb..70bd854fec 100644 --- a/lib/librte_eal/common/meson.build +++ b/lib/librte_eal/common/meson.build @@ -3,6 +3,8 @@ includes += include_directories('.') +cflags += [ '-DABI_VERSION="@0@"'.format(abi_version) ] + if is_windows sources += files( 'eal_common_bus.c', @@ -14,6 +16,7 @@ if is_windows 'eal_common_dynmem.c', 'eal_common_errno.c', 'eal_common_fbarray.c', + 'eal_common_hexdump.c', 'eal_common_launch.c', 'eal_common_lcore.c', 'eal_common_log.c', @@ -30,6 +33,10 @@ if is_windows 'malloc_heap.c', 'rte_malloc.c', 'eal_common_timer.c', + 'rte_random.c', + 'rte_reciprocal.c', + 'rte_service.c', + 'rte_version.c', ) subdir_done() endif @@ -73,6 +80,7 @@ sources += files( 'rte_random.c', 'rte_reciprocal.c', 'rte_service.c', + 'rte_version.c', ) if is_linux