From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wi0-f177.google.com (mail-wi0-f177.google.com [209.85.212.177]) by dpdk.org (Postfix) with ESMTP id 780E99AAB for ; Wed, 25 Feb 2015 10:27:43 +0100 (CET) Received: by mail-wi0-f177.google.com with SMTP id bs8so3477622wib.4 for ; Wed, 25 Feb 2015 01:27:43 -0800 (PST) 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=zlltziJjQCJAk8snDxEbsZlxquLwvUBh07JgxnVLvak=; b=ZX9sQ4r2lt4wT4MD4+Io8WQG1cVjCd1cRybfVTVV29yFoe+VHQv4HIV4xC9aivUrNp GMTbAcJrSLupJYNCo6FhwEriG1t+b+saRLDxHZwHHdOHVs4wee4JY/C0rSiD4CSQE+Hx 8LUO/uYZ5ygRR5aauD50o3T4FHgFIzhWjRKJQx2E+7le5OdjllKdDoEx20CQEzwCddXq MRwtBt/Yn3p1a7TaX+Ji2qbOS7GV6x68Jwl0uWy4012p0ezs6nszMEkfsS1xZcgvAxTm r3oWvdwM8EmTJFRn/0non56ztjK7w5kAMWjf378WlIm6STPriGx6hEfDzAoUEAN/X27u S0uw== X-Gm-Message-State: ALoCoQkomDjt9lFSxgPGEdK0draH6FKnEbChX64ABAHhcBqyr5ps54s7RN3A9FFU4HwHVHV4FKCi X-Received: by 10.180.24.65 with SMTP id s1mr4869730wif.30.1424856463279; Wed, 25 Feb 2015 01:27:43 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by mx.google.com with ESMTPSA id s5sm28689639wia.1.2015.02.25.01.27.41 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 25 Feb 2015 01:27:42 -0800 (PST) From: Thomas Monjalon To: Pawel Wodkowski , Tetsuya Mukawa Date: Wed, 25 Feb 2015 10:27:09 +0100 Message-ID: <8481918.W69adCK4DU@xps13> Organization: 6WIND User-Agent: KMail/4.14.4 (Linux/3.18.4-1-ARCH; KDE/4.14.4; x86_64; ; ) In-Reply-To: <54ED7BF3.6060603@intel.com> References: <54ED32EE.9090604@igel.co.jp> <54ED7BF3.6060603@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] Cannot compile l2fwd-jobstats example 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, 25 Feb 2015 09:27:43 -0000 2015-02-25 08:38, Pawel Wodkowski: > On 2015-02-25 03:26, Tetsuya Mukawa wrote: > > Hi, > > > > I cannot compile l2fwd-jobstats using master branch. > > Here is log > > > > $ T=x86_64-native-linuxapp-gcc make examples > > ================== Build examples for x86_64-native-linuxapp-gcc > > == bond > > == cmdline > > == distributor > > == exception_path > > == helloworld > > == ip_pipeline > > == ip_reassembly > > == ipv4_multicast > > == kni > > == l2fwd > > == l2fwd-jobstats > > make: *** l2fwd-jobstats: No such file or directory. Stop. > > make[2]: *** [l2fwd-jobstats] Error 2 > > make[1]: *** [x86_64-native-linuxapp-gcc_examples] Error 2 > > make: *** [examples] Error 2 > > > > > > As a result of bisecting, it seems after applying below commit, this > > error can be seen. > > > > commit 2caeb8c0141dcf488f2d68aa8e8c44d1f85ed28b > > Author: Pawel Wodkowski > > Date: Tue Feb 24 17:33:24 2015 +0100 > > > > examples/l2fwd-jobstats: new example > > > > > > Thanks, > > Tetsuya > > > > Looking on git log, there are missing two files there: > > examples/l2fwd-jobstats/Makefile > examples/l2fwd-jobstats/main.c > > from patch http://dpdk.org/ml/archives/dev/2015-February/014107.html Yes, it explains why it works on my machine... I forgot to add them after fixing merge. It's fixed now. Sorry for the inconvenience.