From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pl1-f182.google.com (mail-pl1-f182.google.com [209.85.214.182]) by dpdk.org (Postfix) with ESMTP id 989F71B440 for ; Mon, 22 Oct 2018 18:25:29 +0200 (CEST) Received: by mail-pl1-f182.google.com with SMTP id 30-v6so19298237plb.10 for ; Mon, 22 Oct 2018 09:25:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=ToYAspvuePFisd0hF8XIOEYWteHEDeOJ7KBjqRy5hIQ=; b=YW8Tq2Hml2pryaKrk+C6TE8UBB0JnPu14QI+UvcOj2IzD7FaLL/Y0nM6mtU6/1VGIk fziPq0kOFtf6WeWj04lkOmsd/Kchj4yNnROCdg+dUPQJvf2MFaRO5IwOusH7xPJsRuBA 3JJMhSUvrWVRZxBZadK3UJe3WsA/qwnwK3qN52dvcSj0lfIwU8d5k1Pcpqs8isLHfek2 1L0bbybnw5X2UG2gEpoZ2Wp3YDr24ozin/yH77WYkRdLyHe86MRF/85omuVSYrmCq+UJ OZAswdRwiDbepjR/LQ4tBOk3/1Pu9pVUkvXcDiRKY+hZjXsDYmlH/mhRL32namUy+ifT 7ptQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=ToYAspvuePFisd0hF8XIOEYWteHEDeOJ7KBjqRy5hIQ=; b=kRzzyUzDQDdixYqkInDVmMOXEHLdJw3S6KpI7ThTDdma5+nx2kPEzl7lKvnzggmesr NYtWBX1f21SL6hxiR/YnTyXQW6yNFEBXXgMZoNEPlgXJX4/60hw3nYe8CMvoSpQ/+DGu Rc4eV13S/gylhQK7+rtMqgQOq0lmh9CoXM4t6JVYn9kkrKjeZPCs0wEd814YRBYS6I/j KKxFGNkQhUD1Z3gzG9Zed9aXFBHQAEF/j0tC5vBBreDtSuc1RICrIlhA1nQa7yGKHJjK 8AOJeZsn3hwJMf2oLBENhfN60lsD2/ziq6gy06djA5bmts43ZFpeENgrN9+8zYvGNR1K G1HA== X-Gm-Message-State: ABuFfogLbz+EKCnzYfR+Bw4lTbVGTx/LHZLfMBpmOIUxAzQxt4XO5dxM HlCvk2WA+TrEdpuUGHYb5p2dlQ== X-Google-Smtp-Source: ACcGV63+mgdKMoPKs4uR9U7ckHDbMDzRoJ1BhE2xmOQwC81/5Q81MwMxRLFA0EA8aNpC8sPJdoYU/w== X-Received: by 2002:a17:902:8347:: with SMTP id z7-v6mr45324957pln.111.1540225528477; Mon, 22 Oct 2018 09:25:28 -0700 (PDT) Received: from xeon-e3 (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id 187-v6sm49735131pfu.129.2018.10.22.09.25.27 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 22 Oct 2018 09:25:28 -0700 (PDT) Date: Mon, 22 Oct 2018 09:25:25 -0700 From: Stephen Hemminger To: venkataprasad k Cc: users@dpdk.org Message-ID: <20181022092525.5a73ac11@xeon-e3> In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-users] unable compiling dpdk X-BeenThere: users@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK usage discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Oct 2018 16:25:29 -0000 On Wed, 17 Oct 2018 12:09:28 +0530 venkataprasad k wrote: > Getting the following error while compiling dpdk. > Not clear what i am missing. > > $ make config T=x86_64-native-linuxapp-gcc > Configuration done using x86_64-native-linuxapp-gcc > $ sed -ri 's,(PMD_PCAP=).*,\1y,' build/.config > $ make > == Build lib > *dpdk-stable-18.02.2/mk/rte.subdir.mk:56 : *** > missing separator. Stop.* > *make[1]: *** [lib] Error 2* > *make: *** [all] Error 2* > $ uname -a > Linux sce-bld-lin2 2.6.32-754.el6.x86_64 #1 SMP Thu May 24 18:18:25 EDT > 2018 x86_64 x86_64 x86_64 GNU/Linux > > Thanks, > Venkat Don't edit build results, instead create your own config file and use make config on that. $ cp defconfig/x86_64-native-linuxapp-gcc defconfig/linux-pcap $ echo 'CONFIG_RTE_LIBRTE_PMD_PCAP=y' >> defconfig/linux-pcap $ make config T=linux-pcap Or just use meson build which should enable everything that is buildable in your environment.