From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by dpdk.org (Postfix) with ESMTP id A78AD590F for ; Thu, 17 Jul 2014 12:31:03 +0200 (CEST) Received: by mail-we0-f182.google.com with SMTP id k48so1057326wev.13 for ; Thu, 17 Jul 2014 03:31:56 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=lJ9Y4NOUMg+bcQxiUsjQKW3E+CL85Ithr2EORnwxgyI=; b=LbyGtrNMdqyx8QN8srughKaV702uKZf45ANdaLOVRKSBx7eUs6yAri6SU1eYGBq54M PuNaqUWR3YwoVZMU4Z0gSlYJ/mPcS7LSwE1nkQr19B5qLUvPklgZmStXvsJ5U9o318H8 MhTYBwschyWQHfwFxWzzPv309kXbtT5T4yfggvMyMT8+72SJOvI7p9YC1BRa+78JjPYQ sPxkz5Ubku8u4kc2kmvu87pHWSXBPetzrhtg+6yNIjkNHswXI0JiOw78jhe7G7x07ire 9q70gnB2FFiovmrYFjUOD9X3pNW9PJx/WH5ad8pCVCmP+NsQcpoNmv0guNffkY7R5qbJ IVpQ== X-Gm-Message-State: ALoCoQnxmwKaKH0bPIxo8VmjLZdas2XP8EVto1gT0ai0MgXfuzHy3gWUe85xS9o/tA4qD/5vML2s X-Received: by 10.194.59.65 with SMTP id x1mr42744249wjq.60.1405592778807; Thu, 17 Jul 2014 03:26:18 -0700 (PDT) Received: from xps13.localnet ([82.239.227.177]) by mx.google.com with ESMTPSA id g8sm31380894wib.18.2014.07.17.03.26.17 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 17 Jul 2014 03:26:18 -0700 (PDT) From: Thomas Monjalon To: Bruce Richardson Date: Thu, 17 Jul 2014 12:25:59 +0200 Message-ID: <5691232.rqHb7jlT9l@xps13> Organization: 6WIND User-Agent: KMail/4.13.2 (Linux/3.15.5-1-ARCH; KDE/4.13.2; x86_64; ; ) In-Reply-To: <1404776219-6130-4-git-send-email-bruce.richardson@intel.com> References: <1404776219-6130-1-git-send-email-bruce.richardson@intel.com> <1404776219-6130-4-git-send-email-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH 3/6] mk: Ensure correct detection of SSE4.2 on FreeBSD 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: Thu, 17 Jul 2014 10:31:03 -0000 2014-07-08 00:36, Bruce Richardson: > Add a special case to the native target makefile, where we check if > -march=native shows SSE4.2 support. If it does not, then not everything may > build, so we check if the hardware supports SSE4.2, and use a corei7 target > explicitly to get the SSE4.2 support. Now that SSE4.2 support is better detected, can we remove these lines from defconfig_x86_64-native-bsdapp-gcc? -# -# GCC doesn't detect SSE4.x support correctly on BSD, so disable ACL lib -# -CONFIG_RTE_LIBRTE_ACL=n -- Thomas