Received: from mail-pl1-f174.google.com (mail-pl1-f174.google.com [209.85.214.174]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id E37FF7819EA for <~alpine/devel@lists.alpinelinux.org>; Tue, 4 Feb 2020 02:50:14 +0000 (UTC) Received: by mail-pl1-f174.google.com with SMTP id y8so6624571pll.13 for <~alpine/devel@lists.alpinelinux.org>; Mon, 03 Feb 2020 18:50:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chave-us.20150623.gappssmtp.com; s=20150623; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=oIGPyzoF9ARt74d/dhydPPR4kg2WtAwkTXkJaV4ZUkg=; b=nqfdKfrp6FbX+43qq6Axgma/bkd8cUS2S0R2nt6St/TTOs6V+Qo6nW3nmXdalPvz7W Bz3d1D7tfXRbOR1f59lxpj/o9Rt4VcMeJknqDmH8/AuxccuDEmyB42cGV+U6e47RW/Pl 66BOJGnnQaBNRVsJQq3uFijZqoOGBFoDCbFg3cah2EZHjiC0gR2xuQgsNndv4plgoh+s 2focB+Y184vkrRjmtNRLYaZScUJ2nuMQjsvH4q8hzR74uwxVrbFfDx49btDbe9DJ1iV4 gCiWCD3XAUjUvBw08ki+BXznGT/lwa/GH9S2svtqo9AL1zgngGfVhSyAzARix5KFyOcR WCow== 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=oIGPyzoF9ARt74d/dhydPPR4kg2WtAwkTXkJaV4ZUkg=; b=uQdT+hn2oHUOhpD7wDIAUWtqQb1FOSk/xMQRREp4XXIQB0FphJRqNIA7XNF1fBlyIp 0dooy3407gqNwYJNVmeBmp6BQAqLKJSGB0SDlMyKpf0UDjU1MqumJeLB9A7x/UMmzI2k zYNMsTlEzY72Ns/1HVt9Itq4eOSDtPZwrK1P74Wz7DzqcR9fX4xEo7uV9+1ToKfg0T/D SCZDQ0xZYsVuddF0kxXi4uV+j5Wv/vVRF66hBl7IW1GugE/ZfrO3VDgSMLWfC6f9diQc 1pP43+oBKMV0MFsRzjqCSicRGK4c8W8Q1N5ltwbd6uieqfztLTn2+7zb0PuU1L5/9t5+ ZznA== X-Gm-Message-State: APjAAAV3qxLfWT1b0bR3QmpCb05MKLProRFTFmrRqcMmcZIbObKFBnTE ijsSIgk+edlUyqK4O0v/+/icl7tFAdIQtzZ2nCnujw== X-Google-Smtp-Source: APXvYqzU2CHVsLQLsuufVI2SI9s2t5Rwp2HYRP4xK86radvjoFUDml1o1YChGuugVrPJkdXML1qEs0AcYIpLZ6c6DeQ= X-Received: by 2002:a17:90a:d807:: with SMTP id a7mr3133579pjv.15.1580784611863; Mon, 03 Feb 2020 18:50:11 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: Carl Chave Date: Mon, 3 Feb 2020 21:50:00 -0500 Message-ID: Subject: Re: bootstrap.sh fails To: Drew DeVault Cc: ~alpine/devel@lists.alpinelinux.org Content-Type: text/plain; charset="UTF-8" For the record, I did end up getting a working base load on an old armel board. I'm not convinced I could recreate what I did, but the two things that fixed the majority of the issues I had was disabling most of the compiler language support when invoking the bootstrap script: CBUILD=x86_64 LANG_D=false LANG_OBJC=false LANG_GO=false LANG_FORTRAN=false LANG_ADA=false ./bootstrap.sh armel and commenting out the stripbin function in /usr/bin/abuild because the wrong strip binary was being called for many packages, not all, but many. Probably not the best solution but I figured I could go back and rebuild everything natively later?