From owner-svn-src-head@freebsd.org Fri May 11 18:06:36 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0CA63FAFD65; Fri, 11 May 2018 18:06:36 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: from mail-it0-f54.google.com (mail-it0-f54.google.com [209.85.214.54]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 99E1C6901F; Fri, 11 May 2018 18:06:35 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: by mail-it0-f54.google.com with SMTP id z6-v6so3032829iti.4; Fri, 11 May 2018 11:06:35 -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:reply-to:in-reply-to:references :from:date:message-id:subject:to:cc; bh=k5/pdxYNVnV2/+z4KwP4/oZZ8DSQsU9nB55WewnBn/Q=; b=ppLbQ5Mg2erzd+ObkxqVcXPjg0r86ENL/FhZbUrqZubkU87txqEWiPlVlmKL5p1/JC iwuCOQe3ok2YowX5wNDZAJB/YBgDqy0IgB2c++JG8PMYpH7bb3p0tQ7a5XjF+MM/epTl ziCyfuFe8JLyDCNOBNWAW4qTYK5d5spklxIWKMGJlHzdfoIahRk+QVyeCWu2GytMBvbV iWc7bd+nHeCY12mcZbEb/sb1jElEM9DVUWFuR2C+8ybkwvI+Yu8XR8X7Tibfg3cDnQLL Sl0bOBGcYpzIiNJzyWaNwA2k+JiKLCCbi8/Hy+O+74Nk1YlBLtlcYtEQPszNjnCRJ8ih sGwA== X-Gm-Message-State: ALKqPwe6vCczk698HpszQCxztRKk4j/YLN2FL0LYsA7rUn6EyTVsAYdy hOCcel9GiHG4u+Tyj8aHiKdaMHfI X-Google-Smtp-Source: AB8JxZoNDon6Zhzc0/YWTVPxLdscSGws+RhR97UhNxtVOixWxQwisO3dVrfgZ50+Grm5BqcD9jvajw== X-Received: by 2002:a24:d6d7:: with SMTP id o206-v6mr4033465itg.97.1526061620670; Fri, 11 May 2018 11:00:20 -0700 (PDT) Received: from mail-it0-f49.google.com (mail-it0-f49.google.com. [209.85.214.49]) by smtp.gmail.com with ESMTPSA id z72-v6sm1933239ioz.64.2018.05.11.11.00.19 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 11 May 2018 11:00:20 -0700 (PDT) Received: by mail-it0-f49.google.com with SMTP id n202-v6so3019828ita.1; Fri, 11 May 2018 11:00:19 -0700 (PDT) X-Received: by 2002:a24:2885:: with SMTP id h127-v6mr4274874ith.46.1526061619852; Fri, 11 May 2018 11:00:19 -0700 (PDT) MIME-Version: 1.0 Reply-To: cem@freebsd.org Received: by 2002:a02:a40b:0:0:0:0:0 with HTTP; Fri, 11 May 2018 11:00:18 -0700 (PDT) In-Reply-To: <20180511100713.GG6887@kib.kiev.ua> References: <201805101501.w4AF1iI0039082@repo.freebsd.org> <20180511100713.GG6887@kib.kiev.ua> From: Conrad Meyer Date: Fri, 11 May 2018 11:00:18 -0700 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r333461 - head/sys/amd64/amd64 To: Konstantin Belousov Cc: Ed Maste , src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 May 2018 18:06:36 -0000 On Fri, May 11, 2018 at 3:07 AM, Konstantin Belousov wrote: > On FreeBSD, gcc configuration requires explicit --enable-gnu-indirect-function > option. I see it in e.g. lang/gcc7 port Makefile. > > On the other hand, I do not understand how devel/amd64-xtoolchain-gcc > and devel/powerpc64-xtoolchain-gcc are build, so cannot see whether the > switch is added to the configure invocation. But I suspect that it is > not. > > In other words, most likely the problem is due to the port itself. Sure, I will try to track it down and file a port bug. Until then, though, head is broken for cross toolchain GCC users :-(. I believe xtoolchain GCC is configured here: https://svnweb.freebsd.org/ports/head/devel/powerpc64-gcc/Makefile?view=markup#l44 (Indeed, --enable-gnu-indirect-function is absent.) Thanks, Conrad