From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-x233.google.com (mail-wi0-x233.google.com [IPv6:2a00:1450:400c:c05::233]) by dpdk.org (Postfix) with ESMTP id C78294BFE for ; Wed, 20 Mar 2013 17:06:44 +0100 (CET) Received: by mail-wi0-f179.google.com with SMTP id ez12so2019349wid.6 for ; Wed, 20 Mar 2013 09:05:44 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:from:to:subject:date:message-id:x-mailer:in-reply-to :references:in-reply-to:references:x-gm-message-state; bh=v0rDNmAlrRijx8cPQTeaHGZevOm3kdUtDxoKKwyuh2w=; b=l0pD5XqI5GJs1Y6jAKc2zRgRKhtuWUdnZSJEDmeEZSkwqPaVPPS9UZgWB0Kt1eHJI+ SyR8viYSqwXJ0jfmAtE67UKX+vq3niQ+zZ+7T7kfMLmNjVD6tzdfrzcGqXo/aauN/KKH mZFHE6wy0rAF82MDZat1MGq0tTa0dq0VIEsc12RIK1M1CCEXNIxP5OWOa4sZr4c6CQDS EjASTbPdJaKG38iAirQLzQTKLRWVkIRSaByN5zXcgcokXsCzZQ5AN31V306anl+kKigh YvKEkn8mTtoAhpzxWHnpsgQqBw1g1SADzP21uDbKNe9FQt8Hcc5pMe9gccKeejLSSUxY 4PRQ== X-Received: by 10.194.58.202 with SMTP id t10mr11789826wjq.4.1363795543942; Wed, 20 Mar 2013 09:05:43 -0700 (PDT) Received: from 6wind.com (6wind.net2.nerim.net. [213.41.180.237]) by mx.google.com with ESMTPS id o8sm7704108wix.7.2013.03.20.09.05.41 (version=TLSv1 cipher=RC4-SHA bits=128/128); Wed, 20 Mar 2013 09:05:43 -0700 (PDT) Received: by 6wind.com (sSMTP sendmail emulation); Wed, 20 Mar 2013 17:05:41 +0100 From: Thomas Monjalon To: dev@dpdk.org Date: Wed, 20 Mar 2013 17:04:50 +0100 Message-Id: X-Mailer: git-send-email 1.7.2.5 In-Reply-To: References: In-Reply-To: References: X-Gm-Message-State: ALoCoQlEMwpkMxcVyFz0JZhbrsJzgyRYWYzu61kW8EvRlYuiljO/UQ/xMqVh4lwHaa8ksLKxnuvK Subject: [dpdk-dev] [PATCH 02/22] mk: fix typo in LDFLAGS for 32-bit 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: Wed, 20 Mar 2013 16:06:45 -0000 From: Thierry Herbelot Enable compilation for 32-bit architecture. Acked-by: Ivan Boule Signed-off-by: Thierry Herbelot --- mk/arch/i686/rte.vars.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/mk/arch/i686/rte.vars.mk b/mk/arch/i686/rte.vars.mk index 6f8e474..d6a3fe4 100644 --- a/mk/arch/i686/rte.vars.mk +++ b/mk/arch/i686/rte.vars.mk @@ -53,7 +53,7 @@ ARCH ?= i386 CROSS ?= CPU_CFLAGS ?= -m32 -CPU_LDFLAGS ?= -m elf_i386 +CPU_LDFLAGS ?= -melf_i386 CPU_ASFLAGS ?= -felf export ARCH CROSS CPU_CFLAGS CPU_LDFLAGS CPU_ASFLAGS -- 1.7.2.5