From nobody Wed Aug 11 19:03:54 2021 X-Original-To: freebsd-current@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 45B2E137E025 for ; Wed, 11 Aug 2021 19:04:14 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-il1-f172.google.com (mail-il1-f172.google.com [209.85.166.172]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4GlK4G1Hlfz3tlg for ; Wed, 11 Aug 2021 19:04:14 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by mail-il1-f172.google.com with SMTP id i4so4036238ila.1 for ; Wed, 11 Aug 2021 12:04:14 -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=Un904P0wExIb1xt4pHsci/QRB4ywPNS87KHudqfYdqI=; b=bEKI27a5AIczo8QV7xL6ae7xokm3QO7U+1IMgwjKQhoVdDOCf4ti/6eV+bYIcnuPw4 r9dCd/QBtBOPpRlrMQjkiVgWgqcmsfnbulOQyWv013f52ESxXFQuh+90vsRnBlTeQS5F T90wKsBRggj1Xf/P5t3IzuhAnYcjD9mDSNSC9pLYeIKeeF6H4W+5fXgOiMHZpwMwSP+7 0roWd7C1neJEYwjZm8szVkHseodUIafLGo5H00DiSu4ANLelR81NmZmQXS3WKouIsoPk thGkesu3thcnmcoQST7Epm5wLoG9DMnXhZpKw2tQ+wf74RaS4Vjv9z7ULT1SYA9D3cad RLrw== X-Gm-Message-State: AOAM530JS5K+bgJ3bqdCC1kIUvWV6xP2X14wCZDB/0b3K8GGwogXjdAo h6WN0aSNCqyVn+KDLr1rohW+k4OPQrIoQZbGw0kkV3iYCB4= X-Google-Smtp-Source: ABdhPJzQ1hzMiaxZcAJYGuKa/CBUDknqJhPcuXQjYY+DeIZzrHfFMMDD3vokSzp0tyRQTTP3zYKGCtUBzWLLzB30YIU= X-Received: by 2002:a92:cacd:: with SMTP id m13mr125582ilq.256.1628708646997; Wed, 11 Aug 2021 12:04:06 -0700 (PDT) List-Id: Discussions about the use of FreeBSD-current List-Archive: https://lists.freebsd.org/archives/freebsd-current List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-current@freebsd.org MIME-Version: 1.0 References: <20210811113956.64df7c5a@thor.intern.walstatt.dynvpn.de> In-Reply-To: <20210811113956.64df7c5a@thor.intern.walstatt.dynvpn.de> From: Ed Maste Date: Wed, 11 Aug 2021 15:03:54 -0400 Message-ID: Subject: Re: ar: warning: can't open file: ccopy.pieo: No such file or directory To: FreeBSD User Cc: FreeBSD CURRENT Content-Type: text/plain; charset="UTF-8" X-Rspamd-Queue-Id: 4GlK4G1Hlfz3tlg X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-ThisMailContainsUnwantedMimeParts: N On Wed, 11 Aug 2021 at 05:41, FreeBSD User wrote: > > Hallo, > > latest upgrade of CURRENT sources renders buildworld into failure, box is running > FreeBSD 14.0-CURRENT #1 main-n248614-67f508db84b: Wed Aug 11 07:29:11 CEST 2021 amd64: Assuming this was with BEARSSL enabled, it should be fixed with: commit 879675e9a0d84880cad9834e2ef98e8724c5532c Author: Warner Losh Date: Wed Aug 11 10:59:28 2021 -0600 stand: Add MK_PIE=no to defs.mk There's no need to build both pie and non-pie .o's for stand. There's some other build thing with MK_BEAR_SSL=yes and/or MK_LOADER_VERIEXEC=yes that causes the pie build to fail that the 'ar' stage now. Since we don't need the PIE stuff and the non-PIE stuff, disable PIE for the boot loader. Reviewed by: emaste Sponsored by: Netflix