From: Damjan Marion Date: Mon, 16 May 2016 14:52:55 +0000 (+0200) Subject: VPP-58: Fix build on AMD Opteron X-Git-Tag: v16.06-rc1~3 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=793b18de058a9e8ae64023f14b19f5bcd30e9ead;p=vpp.git VPP-58: Fix build on AMD Opteron Change-Id: Ib3e10fd4c27dde4f90b8d156f0c8547787ad46e2 Signed-off-by: Damjan Marion --- diff --git a/vppinfra/vppinfra/string.h b/vppinfra/vppinfra/string.h index 12498215c66..8a2918f80c1 100644 --- a/vppinfra/vppinfra/string.h +++ b/vppinfra/vppinfra/string.h @@ -57,7 +57,7 @@ void clib_memswap (void * _a, void * _b, uword bytes); #if __AVX__ #include -#elif __SSE3__ +#elif __SSSE3__ #include #else #define clib_memcpy(a,b,c) memcpy(a,b,c)