From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-la0-f42.google.com (mail-la0-f42.google.com [209.85.215.42]) by dpdk.org (Postfix) with ESMTP id 6372168C2 for ; Fri, 5 Sep 2014 15:18:49 +0200 (CEST) Received: by mail-la0-f42.google.com with SMTP id mc6so13895167lab.1 for ; Fri, 05 Sep 2014 06:23:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=xqrXVdKyE3VmERAu5Pjxa4qBD1mTa9bccncX3W8JuFc=; b=xipU/mIG65n9hK4FSQYIOznJUC3TYwVIDuwi8NrebMgyKWeWUTMI4OiyuBanoWce5q U2f1Ty8gnnxpeqSMZUXEtVPbfFC8NQbHFQvQDz3QrkSV/TnN790JcxmQok8PeaXbe/7M 46nToi/N9efm5IBRKgDmYOfwlWbkvCWe7yZm/HlwXVqOjrVuSadqfpZ3EYlvKLOJ857k xZEn85ngh0mrTyp8p6eJfx1vSnmKogVkPu7ALvBnP0sWausAKZd/kxuico7qbOGWQIjc SGfVQzDYL+CYBVVIYXy4kMX7hseIlyuJIpMXrVIn9xEoZ2nSw/O8qswzR7bm6/ai3olB BDwA== MIME-Version: 1.0 X-Received: by 10.152.20.132 with SMTP id n4mr11708869lae.86.1409923414765; Fri, 05 Sep 2014 06:23:34 -0700 (PDT) Received: by 10.112.45.7 with HTTP; Fri, 5 Sep 2014 06:23:34 -0700 (PDT) Date: Fri, 5 Sep 2014 18:53:34 +0530 Message-ID: From: Raj Ravi To: "dev@dpdk.org" Content-Type: text/plain; charset=UTF-8 Subject: [dpdk-dev] SSSE3 instruction set not enabled ERROR - use msse4.2 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Sep 2014 13:18:49 -0000 Hi, I was facing this error: "SSSE3 instruction set not enabled" while building dpdk. Using the following commands: make config T=x86_64-native-linuxapp-gcc make install T=x86_64-native-linuxapp-gcc So, again I tried like this : make config T=x86_64-native-linuxapp-gcc EXTRA_CFLAGS="-msse4.2" make install T=x86_64-native-linuxapp-gcc EXTRA_CFLAGS="-msse4.2" Now, the build goes through. Is This method correct to follow ? Thanks