Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751310AbeANFNR (ORCPT + 1 other); Sun, 14 Jan 2018 00:13:17 -0500 Received: from mail-ot0-f180.google.com ([74.125.82.180]:37886 "EHLO mail-ot0-f180.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750774AbeANFNQ (ORCPT ); Sun, 14 Jan 2018 00:13:16 -0500 X-Google-Smtp-Source: ACJfBots3ZMTyon/tepNDmg6RyV4vgEB6vYYPMcRURDvU+AJx4MIuUI+8h1AKS2vHQtPEBCSB71OOw== To: "linux-kernel@vger.kernel.org" From: Rob Landley Subject: Commit fc72ae40e303 broke x86-64 build environment. Message-ID: <5481b34b-9bf2-4709-8a2f-5cfe4bbcef2c@landley.net> Date: Sat, 13 Jan 2018 23:13:13 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: You've made the ORC unwinder part of allnoconfig, which means trying to build "make ARCH=x86_64 allnoconfig" requires installing a new package (libelf-dev) or else the build breaks. What's worse, if I go into menuconfig and switch it back to frame pointer, the build STILL breaks: $ make -j 8 Makefile:932: *** "Cannot generate ORC metadata for CONFIG_UNWINDER_ORC=y, please install libelf-dev, libelf-devel or elfutils-libelf-devel". Stop. $ grep UNWIND .config # CONFIG_UNWINDER_ORC is not set CONFIG_UNWINDER_FRAME_POINTER=y # CONFIG_UNWINDER_GUESS is not set As far as I can tell, x86-64 doesn't build anymore without libelf-dev. It's a new hard requirement for the build. Why? Rob