From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Mar 24 18:20:44 2015 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5C1755B6 for ; Tue, 24 Mar 2015 18:20:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2761B60 for ; Tue, 24 Mar 2015 18:20:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t2OIKisH090373 for ; Tue, 24 Mar 2015 18:20:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 198877] CPUTYPE in make.conf gets changed, breaks lang/gcc Date: Tue, 24 Mar 2015 18:20:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: dieterich.joh@gmail.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gerald@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Mar 2015 18:20:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198877 Bug ID: 198877 Summary: CPUTYPE in make.conf gets changed, breaks lang/gcc Product: Ports & Packages Version: Latest Hardware: amd64 OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: gerald@FreeBSD.org Reporter: dieterich.joh@gmail.com Flags: maintainer-feedback?(gerald@FreeBSD.org) Assignee: gerald@FreeBSD.org ON CURRENT, if CPUTYPE?=core-avx2 is set in /etc/make.conf, the build system will automatically translate it to "-march=haswell". While this is correct and understood by clang, it breaks lang/gcc in the configure step (since the latest update to lang/gcc) : configure:3587: /usr/ports/lang/gcc/work/build/./gcc/xgcc -B/usr/ports/lang/gcc/ work/build/./gcc/ -B/usr/local/x86_64-portbld-freebsd11.0/bin/ -B/usr/local/x86_ 64-portbld-freebsd11.0/lib/ -isystem /usr/local/x86_64-portbld-freebsd11.0/inclu de -isystem /usr/local/x86_64-portbld-freebsd11.0/sys-include -c -g -O2 -pipe -march=haswell -DLIBICONV_PLUG -fno-strict-aliasing conftest.c >&5 conftest.c:1:0: error: bad value (haswell) for -march= switch /* confdefs.h */ ^ configure:3591: $? = 1 configure: failed program was: | /* confdefs.h */ | #define PACKAGE_NAME "GNU C Runtime Library" | #define PACKAGE_TARNAME "libgcc" | #define PACKAGE_VERSION "1.0" | #define PACKAGE_STRING "GNU C Runtime Library 1.0" | #define PACKAGE_BUGREPORT "" | #define PACKAGE_URL "http://www.gnu.org/software/libgcc/" | /* end confdefs.h. */ | | int | main () | { | | ; | return 0; | } configure:3605: error: in `/usr/ports/lang/gcc/work/build/x86_64-portbld-freebsd 11.0/libgcc': configure:3608: error: cannot compute suffix of object files: cannot compile See `config.log' for more details. I can reproduce the issue with CPUTYPE?=core-avx-i, which gets translated to -march=ivybridge. -- You are receiving this mail because: You are the assignee for the bug.