X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fsfc%2Fmeson.build;h=c3ecdbe19711c15fb44d77614786b8fc33dfb76d;hb=7f2ae5ddb1b3567655555a34fb014fdef9caabc2;hp=304e8686e56e66cf8d7ef87383d11204a82ff276;hpb=fe4dad2159fc224098ff9834f398b3975f584c03;p=dpdk.git diff --git a/drivers/net/sfc/meson.build b/drivers/net/sfc/meson.build index 304e8686e5..c3ecdbe197 100644 --- a/drivers/net/sfc/meson.build +++ b/drivers/net/sfc/meson.build @@ -6,9 +6,15 @@ # This software was jointly developed between OKTET Labs (under contract # for Solarflare) and Solarflare Communications, Inc. -if arch_subdir != 'x86' or not dpdk_conf.get('RTE_ARCH_64') +if is_windows build = false - reason = 'only supported on x86_64' + reason = 'not supported on Windows' + subdir_done() +endif + +if (arch_subdir != 'x86' or not dpdk_conf.get('RTE_ARCH_64')) and (arch_subdir != 'arm' or not host_machine.cpu_family().startswith('aarch64')) + build = false + reason = 'only supported on x86_64 and aarch64' endif extra_flags = [] @@ -47,9 +53,13 @@ sources = files( 'sfc_tx.c', 'sfc_tso.c', 'sfc_filter.c', + 'sfc_switch.c', + 'sfc_mae.c', 'sfc_flow.c', 'sfc_dp.c', 'sfc_ef10_rx.c', 'sfc_ef10_essb_rx.c', - 'sfc_ef10_tx.c' + 'sfc_ef10_tx.c', + 'sfc_ef100_rx.c', + 'sfc_ef100_tx.c', )