eal/ppc: fix build
authorDavid Marchand <david.marchand@redhat.com>
Fri, 17 Apr 2020 14:56:11 +0000 (16:56 +0200)
committerDavid Marchand <david.marchand@redhat.com>
Fri, 17 Apr 2020 15:45:20 +0000 (17:45 +0200)
Compilation is broken on ppc:

  CC otx2_rx.o
In file included from .../drivers/net/octeontx2/otx2_rx.c:5:0:
.../builds/ppc_64-power8-linux-gcc/include/rte_vect.h:29:17:
error: expected declaration specifiers or ‘...’ before numeric constant
 } __rte_aligned(16) rte_xmm_t;
                 ^~
compilation terminated due to -Wfatal-errors.

Fixes: f35e5b3e07b2 ("replace alignment attributes")

Signed-off-by: David Marchand <david.marchand@redhat.com>
Tested-by: Thomas Monjalon <thomas@monjalon.net>
lib/librte_eal/ppc/include/rte_vect.h

index a0dabf0..1d6c29b 100644 (file)
@@ -7,7 +7,9 @@
 #define _RTE_VECT_PPC_64_H_
 
 #include <altivec.h>
+
 #include "generic/rte_vect.h"
+#include "rte_common.h"
 
 #ifdef __cplusplus
 extern "C" {