[{"id":1782053,"web_url":"http://patchwork.ozlabs.org/comment/1782053/","msgid":"<8dbdd051-e288-fd2d-433b-a441a9e4e6bc@gmail.com>","list_archive_url":null,"date":"2017-10-07T09:27:32","subject":"Re: [Buildroot] [PATCH 3/8] toolchain/external-custom: hide\n\tversions too old for the current arch","submitter":{"id":67942,"url":"http://patchwork.ozlabs.org/api/people/67942/","name":"Romain Naour","email":"romain.naour@gmail.com"},"content":"Hi Yann, All\n\nLe 03/09/2017 à 11:44, Yann E. MORIN a écrit :\n> When an architecture expresses a requirement on the gcc version, limit\n> the version choice in the custom external toolchain.\n> \n> The ratioanle being that there is no point in offering that version to\n\nrationale\n\n> the user if we know before-hand that the gcc version will not work for\n> that architecture.\n> \n> All versions below the minimum we support is just made conditional to\n> that minimum as well, including the \"older\" entry.\n> \n> However, this means that the \"older\" entry is no longer available when\n> the architecture requires a minimum gcc version. A user who wants to use\n> a toolchain with a gcc older than the minimum will have no choice but to\n> realise the toolchain is not suitable (or lie and we would catch that\n\nrealize\n\n> when checking the gcc version anyway).\n> \n> Signed-off-by: \"Yann E. MORIN\" <yann.morin.1998@free.fr>\n> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>\n> \n> ---\n> Note: this implies that it is no longer possible to use a custom\n> external toolchain in which a specific core has been back-ported\n> Thus, this patch may cause regressions in very specific and rare\n> corner cases. Do we want to support those cases? If yes, then we\n> should drop this patch.\n\nThis can be a problem for Linaro toolchains [1] where the GCC support for some\nnew cpu are backported. (Ok this example is moot since Buildroot doesn't support\nthese cpu).\n\nAlso since BR2_TOOLCHAIN_EXTERNAL_GCC_XXX is an user choice, we can print a\nwarning instead of completely disabling the gcc version ?\n\nBest regards,\nRomain\n\n[1] https://releases.linaro.org/components/toolchain/binaries/5.4-2017.05/\n\n> ---\n>  .../toolchain-external-custom/Config.in.options           | 15 +++++++++++++++\n>  1 file changed, 15 insertions(+)\n> \n> diff --git a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options\n> index ae343ddad5..eb7c30f171 100644\n> --- a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options\n> +++ b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options\n> @@ -18,6 +18,11 @@ config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX\n>  \n>  choice\n>  \tbool \"External toolchain gcc version\"\n> +\tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_7   if BR2_ARCH_NEEDS_GCC_AT_LEAST_7\n> +\tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_6   if BR2_ARCH_NEEDS_GCC_AT_LEAST_6\n> +\tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_5   if BR2_ARCH_NEEDS_GCC_AT_LEAST_5\n> +\tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_4_9 if BR2_ARCH_NEEDS_GCC_AT_LEAST_4_9\n> +\tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_4_8 if BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n>  \tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_4_3\n>  \thelp\n>  \t  Set to the gcc version that is used by your external\n> @@ -29,42 +34,52 @@ config BR2_TOOLCHAIN_EXTERNAL_GCC_7\n>  \n>  config BR2_TOOLCHAIN_EXTERNAL_GCC_6\n>  \tbool \"6.x\"\n> +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_7\n>  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_6\n>  \n>  config BR2_TOOLCHAIN_EXTERNAL_GCC_5\n>  \tbool \"5.x\"\n> +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_6\n>  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_5\n>  \n>  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_9\n>  \tbool \"4.9.x\"\n> +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_5\n>  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_9\n>  \n>  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_8\n>  \tbool \"4.8.x\"\n> +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_9\n>  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_8\n>  \n>  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_7\n>  \tbool \"4.7.x\"\n> +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n>  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_7\n>  \n>  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_6\n>  \tbool \"4.6.x\"\n> +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n>  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_6\n>  \n>  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_5\n>  \tbool \"4.5.x\"\n> +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n>  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_5\n>  \n>  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_4\n>  \tbool \"4.4.x\"\n> +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n>  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_4\n>  \n>  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_3\n>  \tbool \"4.3.x\"\n> +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n>  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_3\n>  \n>  config BR2_TOOLCHAIN_EXTERNAL_GCC_OLD\n>  \tbool \"older\"\n> +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n>  \thelp\n>  \t  Use this option if your GCC version is older than any of the\n>  \t  above.\n>","headers":{"Return-Path":"<buildroot-bounces@busybox.net>","X-Original-To":["incoming@patchwork.ozlabs.org","buildroot@lists.busybox.net"],"Delivered-To":["patchwork-incoming@bilbo.ozlabs.org","buildroot@osuosl.org"],"Authentication-Results":["ozlabs.org;\n\tspf=pass (mailfrom) smtp.mailfrom=busybox.net\n\t(client-ip=140.211.166.138; helo=whitealder.osuosl.org;\n\tenvelope-from=buildroot-bounces@busybox.net;\n\treceiver=<UNKNOWN>)","ozlabs.org;\n\tdkim=fail reason=\"signature verification failed\" (2048-bit key;\n\tunprotected) header.d=gmail.com header.i=@gmail.com\n\theader.b=\"k68HO9rN\"; dkim-atps=neutral"],"Received":["from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138])\n\t(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))\n\t(No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3y8LlB5HWnz9t7N\n\tfor <incoming@patchwork.ozlabs.org>;\n\tSat,  7 Oct 2017 20:27:49 +1100 (AEDT)","from localhost (localhost [127.0.0.1])\n\tby whitealder.osuosl.org (Postfix) with ESMTP id 32A798944D;\n\tSat,  7 Oct 2017 09:27:43 +0000 (UTC)","from whitealder.osuosl.org ([127.0.0.1])\n\tby localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n\twith ESMTP id bakukPuQ0jBG; Sat,  7 Oct 2017 09:27:40 +0000 (UTC)","from ash.osuosl.org (ash.osuosl.org [140.211.166.34])\n\tby whitealder.osuosl.org (Postfix) with ESMTP id 811E48943B;\n\tSat,  7 Oct 2017 09:27:40 +0000 (UTC)","from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138])\n\tby ash.osuosl.org (Postfix) with ESMTP id 967B31BFB1F\n\tfor <buildroot@lists.busybox.net>;\n\tSat,  7 Oct 2017 09:27:38 +0000 (UTC)","from localhost (localhost [127.0.0.1])\n\tby whitealder.osuosl.org (Postfix) with ESMTP id 8AFB08943B\n\tfor <buildroot@lists.busybox.net>;\n\tSat,  7 Oct 2017 09:27:38 +0000 (UTC)","from whitealder.osuosl.org ([127.0.0.1])\n\tby localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n\twith ESMTP id lizIVhr6j1Qe for <buildroot@lists.busybox.net>;\n\tSat,  7 Oct 2017 09:27:37 +0000 (UTC)","from mail-wm0-f65.google.com (mail-wm0-f65.google.com\n\t[74.125.82.65])\n\tby whitealder.osuosl.org (Postfix) with ESMTPS id 81D1E89431\n\tfor <buildroot@buildroot.org>; Sat,  7 Oct 2017 09:27:37 +0000 (UTC)","by mail-wm0-f65.google.com with SMTP id b189so13702027wmd.2\n\tfor <buildroot@buildroot.org>; Sat, 07 Oct 2017 02:27:37 -0700 (PDT)","from ?IPv6:2a01:e35:1391:67d0:e6f9:2d2f:1a1e:79bf?\n\t([2a01:e35:1391:67d0:e6f9:2d2f:1a1e:79bf])\n\tby smtp.gmail.com with ESMTPSA id\n\to60sm2935152eda.48.2017.10.07.02.27.34\n\t(version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);\n\tSat, 07 Oct 2017 02:27:35 -0700 (PDT)"],"X-Virus-Scanned":["amavisd-new at osuosl.org","amavisd-new at osuosl.org"],"X-Greylist":"domain auto-whitelisted by SQLgrey-1.7.6","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;\n\th=subject:to:cc:references:from:message-id:date:user-agent\n\t:mime-version:in-reply-to:content-language:content-transfer-encoding; \n\tbh=8LOHD7XiHPvn7KBHuVV6kqLDVzKFx5ar1ogBb93Nx5g=;\n\tb=k68HO9rNtfB35AJhcUCa1b8U4AQibL4gFlMXwPDMqAdmokNjaD1q3bNqrqArcHAnV+\n\tGy6dDLCrZr2FhNfQJRHSEt9dnwTzSiNMH61JNSmFk2zzETPNcoDsJjCvGHd5862qOvnX\n\t1C2u5/n2KnRAKRfZCVIGLsTr2k+CDFI79p/DYduTaVMRfunZElFEXBPU58WJP6bWa0lG\n\tAJVS4WKjlXPxDjJZ8QaHVwSvFA5uP9aRWGUtkk8IJZiWvoKJK6pyoSHn2ubETyqWeO7h\n\tjfMu+AuWYk1pqbzDgPP4zqQFymn3TjQ9kAwj3gI61uIlNv4R0HOnuzX9WtV7L+pR7wNO\n\tZYcw==","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n\td=1e100.net; s=20161025;\n\th=x-gm-message-state:subject:to:cc:references:from:message-id:date\n\t:user-agent:mime-version:in-reply-to:content-language\n\t:content-transfer-encoding;\n\tbh=8LOHD7XiHPvn7KBHuVV6kqLDVzKFx5ar1ogBb93Nx5g=;\n\tb=YxVGeuWcxvtVD5R3ssxwxYUtE6BVPWc+Q127SIboUJ+MP2330hUV1MzL896n0r/FBl\n\tIQo45KrfqWNcYHedxTq0hZ3ktAa9DMuBGnfy1/iBj7Df01A3DJ+LinNXdl376bO/vhgs\n\te88cyjt4mxDKr1ApbWYnKDE6+QcwlnOPxxnk6bc9dxCbK+ddqcuoQQs2iYra3RSw5/YA\n\tuzEBrXl+RBhqarHDpsk1QfJt+++4fDGtHJZ/JYjBpzL7JtcBVDATZCT3sMgEoAZV2gM8\n\tZSMAh9t0d+bOnhpIa+f02cEFqJOmPerXW0fTzpNsxep8pdn50OyLGct5MNp+09beuJkz\n\tvfiQ==","X-Gm-Message-State":"AMCzsaVaOklMwXdiZ5UC756yZ8ttBFmkkiKclO1eQeev8f4z0M10tN8v\n\tLhOzLI8a56UnQAbxhkk9Pqg=","X-Google-Smtp-Source":"AOwi7QBDRY1YRh0Dok25xMTzP88ua8N2GsVr1xt0o25IM3rcinCSxEDii/qKf79rsTUQbKTLjqNFNg==","X-Received":"by 10.80.149.180 with SMTP id w49mr6323054eda.301.1507368455795; \n\tSat, 07 Oct 2017 02:27:35 -0700 (PDT)","To":"\"Yann E. MORIN\" <yann.morin.1998@free.fr>, buildroot@buildroot.org","References":"<cover.1504431850.git.yann.morin.1998@free.fr>\n\t<a9dc18ece6b62e3ac4ce274b708081a9d16bb6aa.1504431850.git.yann.morin.1998@free.fr>","From":"Romain Naour <romain.naour@gmail.com>","Message-ID":"<8dbdd051-e288-fd2d-433b-a441a9e4e6bc@gmail.com>","Date":"Sat, 7 Oct 2017 11:27:32 +0200","User-Agent":"Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101\n\tThunderbird/52.3.0","MIME-Version":"1.0","In-Reply-To":"<a9dc18ece6b62e3ac4ce274b708081a9d16bb6aa.1504431850.git.yann.morin.1998@free.fr>","Content-Language":"en-US","Cc":"Thomas Petazzoni <thomas.petazzoni@free-electrons.com>","Subject":"Re: [Buildroot] [PATCH 3/8] toolchain/external-custom: hide\n\tversions too old for the current arch","X-BeenThere":"buildroot@busybox.net","X-Mailman-Version":"2.1.18-1","Precedence":"list","List-Id":"Discussion and development of buildroot <buildroot.busybox.net>","List-Unsubscribe":"<http://lists.busybox.net/mailman/options/buildroot>,\n\t<mailto:buildroot-request@busybox.net?subject=unsubscribe>","List-Archive":"<http://lists.busybox.net/pipermail/buildroot/>","List-Post":"<mailto:buildroot@busybox.net>","List-Help":"<mailto:buildroot-request@busybox.net?subject=help>","List-Subscribe":"<http://lists.busybox.net/mailman/listinfo/buildroot>,\n\t<mailto:buildroot-request@busybox.net?subject=subscribe>","Content-Type":"text/plain; charset=\"utf-8\"","Content-Transfer-Encoding":"base64","Errors-To":"buildroot-bounces@busybox.net","Sender":"\"buildroot\" <buildroot-bounces@busybox.net>"}},{"id":1782091,"web_url":"http://patchwork.ozlabs.org/comment/1782091/","msgid":"<20171007122707.GI21901@scaer>","list_archive_url":null,"date":"2017-10-07T12:27:07","subject":"Re: [Buildroot] [PATCH 3/8] toolchain/external-custom: hide\n\tversions too old for the current arch","submitter":{"id":13903,"url":"http://patchwork.ozlabs.org/api/people/13903/","name":"Yann E. MORIN","email":"yann.morin.1998@free.fr"},"content":"Romain, All,\n\nOn 2017-10-07 11:27 +0200, Romain Naour spake thusly:\n> Le 03/09/2017 à 11:44, Yann E. MORIN a écrit :\n[--SNIP--]\n> > Note: this implies that it is no longer possible to use a custom\n> > external toolchain in which a specific core has been back-ported\n> > Thus, this patch may cause regressions in very specific and rare\n> > corner cases. Do we want to support those cases? If yes, then we\n> > should drop this patch.\n> \n> This can be a problem for Linaro toolchains [1] where the GCC support for some\n> new cpu are backported. (Ok this example is moot since Buildroot doesn't support\n> these cpu).\n\nOn the other hand, we could get a non-working configuration for other\nexternal toolchains.\n\nAnd that is not nice to let the user generate a configuration we know if\ninvalid.\n\n> Also since BR2_TOOLCHAIN_EXTERNAL_GCC_XXX is an user choice, we can print a\n> warning instead of completely disabling the gcc version ?\n\nI'll see if I can do something about that.\n\nRegards,\nYann E. MORIN.\n\n> Best regards,\n> Romain\n> \n> [1] https://releases.linaro.org/components/toolchain/binaries/5.4-2017.05/\n> \n> > ---\n> >  .../toolchain-external-custom/Config.in.options           | 15 +++++++++++++++\n> >  1 file changed, 15 insertions(+)\n> > \n> > diff --git a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options\n> > index ae343ddad5..eb7c30f171 100644\n> > --- a/toolchain/toolchain-external/toolchain-external-custom/Config.in.options\n> > +++ b/toolchain/toolchain-external/toolchain-external-custom/Config.in.options\n> > @@ -18,6 +18,11 @@ config BR2_TOOLCHAIN_EXTERNAL_CUSTOM_PREFIX\n> >  \n> >  choice\n> >  \tbool \"External toolchain gcc version\"\n> > +\tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_7   if BR2_ARCH_NEEDS_GCC_AT_LEAST_7\n> > +\tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_6   if BR2_ARCH_NEEDS_GCC_AT_LEAST_6\n> > +\tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_5   if BR2_ARCH_NEEDS_GCC_AT_LEAST_5\n> > +\tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_4_9 if BR2_ARCH_NEEDS_GCC_AT_LEAST_4_9\n> > +\tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_4_8 if BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n> >  \tdefault BR2_TOOLCHAIN_EXTERNAL_GCC_4_3\n> >  \thelp\n> >  \t  Set to the gcc version that is used by your external\n> > @@ -29,42 +34,52 @@ config BR2_TOOLCHAIN_EXTERNAL_GCC_7\n> >  \n> >  config BR2_TOOLCHAIN_EXTERNAL_GCC_6\n> >  \tbool \"6.x\"\n> > +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_7\n> >  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_6\n> >  \n> >  config BR2_TOOLCHAIN_EXTERNAL_GCC_5\n> >  \tbool \"5.x\"\n> > +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_6\n> >  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_5\n> >  \n> >  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_9\n> >  \tbool \"4.9.x\"\n> > +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_5\n> >  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_9\n> >  \n> >  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_8\n> >  \tbool \"4.8.x\"\n> > +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_9\n> >  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_8\n> >  \n> >  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_7\n> >  \tbool \"4.7.x\"\n> > +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n> >  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_7\n> >  \n> >  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_6\n> >  \tbool \"4.6.x\"\n> > +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n> >  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_6\n> >  \n> >  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_5\n> >  \tbool \"4.5.x\"\n> > +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n> >  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_5\n> >  \n> >  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_4\n> >  \tbool \"4.4.x\"\n> > +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n> >  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_4\n> >  \n> >  config BR2_TOOLCHAIN_EXTERNAL_GCC_4_3\n> >  \tbool \"4.3.x\"\n> > +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n> >  \tselect BR2_TOOLCHAIN_GCC_AT_LEAST_4_3\n> >  \n> >  config BR2_TOOLCHAIN_EXTERNAL_GCC_OLD\n> >  \tbool \"older\"\n> > +\tdepends on !BR2_ARCH_NEEDS_GCC_AT_LEAST_4_8\n> >  \thelp\n> >  \t  Use this option if your GCC version is older than any of the\n> >  \t  above.\n> > \n>","headers":{"Return-Path":"<buildroot-bounces@busybox.net>","X-Original-To":["incoming@patchwork.ozlabs.org","buildroot@lists.busybox.net"],"Delivered-To":["patchwork-incoming@bilbo.ozlabs.org","buildroot@osuosl.org"],"Authentication-Results":["ozlabs.org;\n\tspf=pass (mailfrom) smtp.mailfrom=busybox.net\n\t(client-ip=140.211.166.137; helo=fraxinus.osuosl.org;\n\tenvelope-from=buildroot-bounces@busybox.net;\n\treceiver=<UNKNOWN>)","ozlabs.org;\n\tdkim=fail reason=\"signature verification failed\" (2048-bit key;\n\tunprotected) header.d=gmail.com header.i=@gmail.com\n\theader.b=\"f0EQ7xxA\"; dkim-atps=neutral"],"Received":["from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137])\n\t(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))\n\t(No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3y8QkH2fDbz9t5C\n\tfor <incoming@patchwork.ozlabs.org>;\n\tSat,  7 Oct 2017 23:27:19 +1100 (AEDT)","from localhost (localhost [127.0.0.1])\n\tby fraxinus.osuosl.org (Postfix) with ESMTP id D7A40886E8;\n\tSat,  7 Oct 2017 12:27:15 +0000 (UTC)","from fraxinus.osuosl.org ([127.0.0.1])\n\tby localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n\twith ESMTP id qkIOqWLLV8kG; Sat,  7 Oct 2017 12:27:13 +0000 (UTC)","from ash.osuosl.org (ash.osuosl.org [140.211.166.34])\n\tby fraxinus.osuosl.org (Postfix) with ESMTP id D1A3B885F5;\n\tSat,  7 Oct 2017 12:27:13 +0000 (UTC)","from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137])\n\tby ash.osuosl.org (Postfix) with ESMTP id 123181C03E7\n\tfor <buildroot@lists.busybox.net>;\n\tSat,  7 Oct 2017 12:27:12 +0000 (UTC)","from localhost (localhost [127.0.0.1])\n\tby fraxinus.osuosl.org (Postfix) with ESMTP id 0453A885F5\n\tfor <buildroot@lists.busybox.net>;\n\tSat,  7 Oct 2017 12:27:12 +0000 (UTC)","from fraxinus.osuosl.org ([127.0.0.1])\n\tby localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024)\n\twith ESMTP id k3PlCDfkukCR for <buildroot@lists.busybox.net>;\n\tSat,  7 Oct 2017 12:27:11 +0000 (UTC)","from mail-wm0-f50.google.com (mail-wm0-f50.google.com\n\t[74.125.82.50])\n\tby fraxinus.osuosl.org (Postfix) with ESMTPS id 2B903885F4\n\tfor <buildroot@buildroot.org>; Sat,  7 Oct 2017 12:27:11 +0000 (UTC)","by mail-wm0-f50.google.com with SMTP id f4so13088269wme.0\n\tfor <buildroot@buildroot.org>; Sat, 07 Oct 2017 05:27:11 -0700 (PDT)","from ymorin.is-a-geek.org\n\t(2a01cb0886107300545b90b6373af347.ipv6.abo.wanadoo.fr.\n\t[2a01:cb08:8610:7300:545b:90b6:373a:f347])\n\tby smtp.gmail.com with ESMTPSA id\n\tb190sm5073811wma.41.2017.10.07.05.27.07\n\t(version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256);\n\tSat, 07 Oct 2017 05:27:08 -0700 (PDT)","by ymorin.is-a-geek.org (sSMTP sendmail emulation);\n\tSat, 07 Oct 2017 14:27:07 +0200"],"X-Virus-Scanned":["amavisd-new at osuosl.org","amavisd-new at osuosl.org"],"X-Greylist":"domain auto-whitelisted by SQLgrey-1.7.6","DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;\n\th=sender:date:from:to:cc:subject:message-id:references:mime-version\n\t:content-disposition:content-transfer-encoding:in-reply-to\n\t:user-agent; bh=HEOIchItLvuQi/snorycBZbad5qqVk/tJV4uRL/+DeQ=;\n\tb=f0EQ7xxAorjVf5IxhaPgrK6M4gg2T14wxREOKJzt0xCMPkqmAbGxOWPswep0eg/jyt\n\t18cr/p8ffUWkXLfoMcmG4jQtUrMVqhFcCzcIEpx+gT2K436PKos8+ZpqVuLKWJQe777O\n\tOcPPxYM8LOdnwNjG1sJAHC2ZA2hl46RUUG2dZGOOHeGHeyeXCPJbfggHxtEY84gUThhI\n\t2Ii/zsjkCd+To1Famoki+ReIG7IdSTPOTOKyoD1Z/QVPkvIYokcknY3AC+dV76S563Yk\n\tsN/ERRwx3OUse6nMvrC/qqN5U54S2Xj0Whjv8AMStyfNY7UXmFvtyX85d35AS+CHat1C\n\tgrUA==","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n\td=1e100.net; s=20161025;\n\th=x-gm-message-state:sender:date:from:to:cc:subject:message-id\n\t:references:mime-version:content-disposition\n\t:content-transfer-encoding:in-reply-to:user-agent;\n\tbh=HEOIchItLvuQi/snorycBZbad5qqVk/tJV4uRL/+DeQ=;\n\tb=ZCbQH8nzBsPBA6aPX/0qAY+yJKI5x5xzBqauhGVSDbcEjv56Q0Dmqibc6e7xKSTJFk\n\thQaPD3p5FMODo2GVqSgyv2YrC7Fl3ZdKlV1vaWGqJ/ErolxX4xT5uLTge3gOgX/+idod\n\t3FGm/Ci4LNqmqTvxwSK0cBPmdfGmHhk+Y3NI+hnD7F5qEdoQxbbUydQzPQHll4vqsEwe\n\tqV/9W3x6/qfKIfcPKrExjHlp5hRBDlIj4j2jgRtnINTzQXqFiaj0cPCkqqSuPCV3sY/u\n\tVFdu9Z2X9VhaGRKmN6xemZtYhDOWiaqJNvsQKpfKTuLOG0L18d9+znzMTVb3Z90zQzUv\n\trH5g==","X-Gm-Message-State":"AMCzsaXA9fAnkUSNfijiGPcxZkjpXZ7ckMGcrN+kwOwyNN9e+d+uJJ9a\n\t9y8XAGALFG/nWf8rp2GJ0eA=","X-Google-Smtp-Source":"AOwi7QDFGL7fOdrjqn+U7ilP6ySX11JFaZ4BHTruK/oT3MKR05NV6wWYBMKVmP05WwZCw6Y/2Xuaqw==","X-Received":"by 10.28.146.20 with SMTP id u20mr1612383wmd.49.1507379229629;\n\tSat, 07 Oct 2017 05:27:09 -0700 (PDT)","Date":"Sat, 7 Oct 2017 14:27:07 +0200","From":"\"Yann E. MORIN\" <yann.morin.1998@free.fr>","To":"Romain Naour <romain.naour@gmail.com>","Message-ID":"<20171007122707.GI21901@scaer>","References":"<cover.1504431850.git.yann.morin.1998@free.fr>\n\t<a9dc18ece6b62e3ac4ce274b708081a9d16bb6aa.1504431850.git.yann.morin.1998@free.fr>\n\t<8dbdd051-e288-fd2d-433b-a441a9e4e6bc@gmail.com>","MIME-Version":"1.0","Content-Disposition":"inline","In-Reply-To":"<8dbdd051-e288-fd2d-433b-a441a9e4e6bc@gmail.com>","User-Agent":"Mutt/1.5.22 (2013-10-16)","Cc":"Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,\n\tbuildroot@buildroot.org","Subject":"Re: [Buildroot] [PATCH 3/8] toolchain/external-custom: hide\n\tversions too old for the current arch","X-BeenThere":"buildroot@busybox.net","X-Mailman-Version":"2.1.18-1","Precedence":"list","List-Id":"Discussion and development of buildroot <buildroot.busybox.net>","List-Unsubscribe":"<http://lists.busybox.net/mailman/options/buildroot>,\n\t<mailto:buildroot-request@busybox.net?subject=unsubscribe>","List-Archive":"<http://lists.busybox.net/pipermail/buildroot/>","List-Post":"<mailto:buildroot@busybox.net>","List-Help":"<mailto:buildroot-request@busybox.net?subject=help>","List-Subscribe":"<http://lists.busybox.net/mailman/listinfo/buildroot>,\n\t<mailto:buildroot-request@busybox.net?subject=subscribe>","Content-Type":"text/plain; charset=\"utf-8\"","Content-Transfer-Encoding":"base64","Errors-To":"buildroot-bounces@busybox.net","Sender":"\"buildroot\" <buildroot-bounces@busybox.net>"}}]