From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-oa0-f47.google.com (mail-oa0-f47.google.com [209.85.219.47]) by dpdk.org (Postfix) with ESMTP id 2A2DCB361 for ; Fri, 5 Sep 2014 15:35:48 +0200 (CEST) Received: by mail-oa0-f47.google.com with SMTP id i7so8493706oag.20 for ; Fri, 05 Sep 2014 06:40:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=uVRec92/8hp/1VFPnvs3fLsIku5IzUFjY9r6181uFk4=; b=d4yHC3TQANTpMzoenWqtWQ3E83/uST0A3Wv7MzTTDS0+IVVg/7KUYLJP6S/hK5swS1 THvXEjioMuFCKK5fnIWwlkykMceTlzcAlMZ6fwNmze9T/Z/d+/Yr12er51pzVCJeD3qz KzFHsiXTVSKWRle3OlGxlfTKjKVxpKfHmupewhR24TBPGujC0GKAxBgMK9ADALMCev2E 9x4wfQTlLkNBvfUaLhGxNU31TcfcCjFMiPGEcvcS44Jj4Y22q3Nl7D7BRcZTo+8fktVz EJ7VgGRReyM4kREaMaVXK09uYEJGX5sbEqxgK8Q4CkbJsTgENqE4icd3k7L0aICYlscb 4WZw== X-Gm-Message-State: ALoCoQkCNw14kxZsWYCpLO68Aft5rs4ejRYsAtsSyZmQ7L2yyTkDCXC5DwbOpeLFkQlAmA0p7/wA MIME-Version: 1.0 X-Received: by 10.182.102.97 with SMTP id fn1mr13562774obb.29.1409924433259; Fri, 05 Sep 2014 06:40:33 -0700 (PDT) Received: by 10.182.3.234 with HTTP; Fri, 5 Sep 2014 06:40:33 -0700 (PDT) In-Reply-To: References: Date: Fri, 5 Sep 2014 22:40:33 +0900 Message-ID: From: Masaru Oki To: Raj Ravi Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Cc: "dev@dpdk.org" Subject: Re: [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:35:48 -0000 Hi, What is your build environment (processor)? I got same error with AMD Phoenom II, doesn't have SSSE3 instruction. 2014-09-05 22:23 GMT+09:00 Raj Ravi : > 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 >