diff options
author | Damjan Marion <damarion@cisco.com> | 2016-06-28 19:10:41 +0200 |
---|---|---|
committer | Damjan Marion <damarion@cisco.com> | 2016-06-28 19:10:41 +0200 |
commit | 154d445f7f8f1553d9bb00d1be42bf1b06eda9f1 (patch) | |
tree | 11ba54c5d97e1554f8d9547c41b6bd924a39271d /vnet | |
parent | a06dfb39c6bee3fbfd702c10e1e1416b98e65455 (diff) |
Fix native build on non x86_64 systems
Change-Id: Iab9f6793112f19a5b54a555623d84099aa8bb03e
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'vnet')
-rw-r--r-- | vnet/vnet/devices/nic/ixge.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vnet/vnet/devices/nic/ixge.c b/vnet/vnet/devices/nic/ixge.c index cd08379ef78..b98e7d9c3af 100644 --- a/vnet/vnet/devices/nic/ixge.c +++ b/vnet/vnet/devices/nic/ixge.c @@ -20,6 +20,7 @@ * Please use supported DPDK driver instead. */ +#if __x86_64__ #include <vppinfra/vector.h> #ifndef CLIB_HAVE_VEC128 @@ -2815,3 +2816,4 @@ void ixge_set_next_node (ixge_rx_next_t next, char *name) break; } } +#endif |