From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8F785A3160 for ; Wed, 9 Oct 2019 10:11:25 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9F3B61BF50; Wed, 9 Oct 2019 10:11:23 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id A18351BF46 for ; Wed, 9 Oct 2019 10:11:22 +0200 (CEST) Received: from mail-vk1-f197.google.com (mail-vk1-f197.google.com [209.85.221.197]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 10E8E8E582 for ; Wed, 9 Oct 2019 08:11:22 +0000 (UTC) Received: by mail-vk1-f197.google.com with SMTP id x128so474551vkx.16 for ; Wed, 09 Oct 2019 01:11:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=WuYMpciUwL20qcOeqqjuH8fhj8HXeHoN7aNRFP1C3vg=; b=FdJSWUEslZmB9e/9oriwHEfG9exiTj4QVQXZFombHzwRpW6BJdj3+0Rr6Vlc/4NSZk 9hgt8ij32bA9wL6p1o5xS/TXMMCc/a4ANxv8rVug6s4XlbpEXrBuxSdq9jnaLJxTodPT 5VLlNPRnVQYeSl8kloqsyMUnRtud0oP0iO4d/vKeQ9fIzeA6136pQAH0EI65uhkY0M2M lgrFl8e4t+5QAafqukQ/Q9NvOWBgRJHQzCR6gJe/1jChCana9P3euT02qfidcnfwQSce aJz/hqUPQpDMIhFfJG0cfDxMikBHw5Ug52VL4Rb9mv/WztViVe84tLfE+bpd6NiEdxNL 6KwQ== X-Gm-Message-State: APjAAAXVZgtroZU92XEz6ACRD+a3gI0aI73K21dJ0h5XcdJKSv0y/kSm F9xH2flR1poqinWIDEGtnUKpVz731c92MafSLil6VkzdezmVlW62WakgZRDYjH5gqCz9QuEfaES NuuL5kGiCs1DjyIEzEs0= X-Received: by 2002:a67:fc49:: with SMTP id p9mr1079564vsq.198.1570608681345; Wed, 09 Oct 2019 01:11:21 -0700 (PDT) X-Google-Smtp-Source: APXvYqyh/ktSLnpkEoMzklyrMRs4qih0R7pU8CVVbbHHpbK/EQyxLihRJWCPp2QYIav4AgFLblbdiuvn+lySgTnQhLw= X-Received: by 2002:a67:fc49:: with SMTP id p9mr1079542vsq.198.1570608681121; Wed, 09 Oct 2019 01:11:21 -0700 (PDT) MIME-Version: 1.0 References: <1565593348-6431-1-git-send-email-david.marchand@redhat.com> <20190812201320.GA8474@localhost.localdomain> <20190814000904.GA11098@localhost.localdomain> In-Reply-To: <20190814000904.GA11098@localhost.localdomain> From: David Marchand Date: Wed, 9 Oct 2019 10:11:10 +0200 Message-ID: To: David Marchand Cc: dev , Aaron Conole , Neil Horman Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] buildtools: lighter experimental symbol check X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Wed, Aug 14, 2019 at 2:09 AM Neil Horman wrote: > > > On Mon, Aug 12, 2019 at 09:02:28AM +0200, David Marchand wrote: > > > > Dumping every object file for every symbol is too heavy. > > > > Use a temporary storage. > > > > > > > > Before: > > > > $ rm -rf master && make defconfig O=master > > > > $ time make EXTRA_CFLAGS=-g O=master > > > > [...] > > > > real 2m24.063s > > > > user 1m16.985s > > > > sys 1m46.372s > > > > > > > > After: > > > > $ rm -rf master && make defconfig O=master > > > > $ time make EXTRA_CFLAGS=-g O=master > > > > [...] > > > > real 1m37.110s > > > > user 0m49.417s > > > > sys 0m51.803s > > > > > > > > Signed-off-by: David Marchand > Acked-by: Neil Horman > Applied. -- David Marchand