net/sfc: disable for 32-bit builds

The sfc driver is not supported on 32-bit so disable in meson in
those cases.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Andrew Rybchenko <arybchenko@solarflare.com>
Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
This commit is contained in:
Bruce Richardson 2018-07-03 11:31:14 +01:00 committed by Thomas Monjalon
parent c23c66b31b
commit 526ca5c6cc

View File

@ -6,7 +6,7 @@
# This software was jointly developed between OKTET Labs (under contract
# for Solarflare) and Solarflare Communications, Inc.
if arch_subdir != 'x86'
if arch_subdir != 'x86' or cc.sizeof('void *') == 4
build = false
endif