mem: extract common dynamic memory allocation
[dpdk.git] / lib / librte_eal / common / meson.build
index 3dc3203..d91c222 100644 (file)
@@ -14,7 +14,6 @@ if is_windows
                'eal_common_log.c',
                'eal_common_options.c',
                'eal_common_thread.c',
-               'rte_option.c',
        )
        subdir_done()
 endif
@@ -43,6 +42,8 @@ sources += files(
        'eal_common_thread.c',
        'eal_common_timer.c',
        'eal_common_trace.c',
+       'eal_common_trace_ctf.c',
+       'eal_common_trace_points.c',
        'eal_common_trace_utils.c',
        'eal_common_uuid.c',
        'hotplug_mp.c',
@@ -51,8 +52,11 @@ sources += files(
        'malloc_mp.c',
        'rte_keepalive.c',
        'rte_malloc.c',
-       'rte_option.c',
        'rte_random.c',
        'rte_reciprocal.c',
        'rte_service.c',
 )
+
+if is_linux
+       sources += files('eal_common_dynmem.c')
+endif