From owner-freebsd-ports-bugs@freebsd.org Wed Dec 26 06:45:23 2018 Return-Path: Delivered-To: freebsd-ports-bugs@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 C14A11344E53 for ; Wed, 26 Dec 2018 06:45:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 5565C681BF for ; Wed, 26 Dec 2018 06:45:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 160341344E52; Wed, 26 Dec 2018 06:45:23 +0000 (UTC) Delivered-To: ports-bugs@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 E5C641344E4E for ; Wed, 26 Dec 2018 06:45:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.ysv.freebsd.org (mxrelay.ysv.freebsd.org [IPv6:2001:1900:2254:206a::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.ysv.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7A483681BE for ; Wed, 26 Dec 2018 06:45:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) 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 mxrelay.ysv.freebsd.org (Postfix) with ESMTPS id C7C6512F7B for ; Wed, 26 Dec 2018 06:45:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id wBQ6jLaG097623 for ; Wed, 26 Dec 2018 06:45:21 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id wBQ6jLmo097620 for ports-bugs@FreeBSD.org; Wed, 26 Dec 2018 06:45:21 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: ports-bugs@FreeBSD.org Subject: [Bug 234408] games/oolite: Update to 1.88 Date: Wed, 26 Dec 2018 06:45:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: lightside@gmx.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: ports-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.isobsolete attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable 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.29 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Dec 2018 06:45:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D234408 lightside changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #200519|0 |1 is obsolete| | --- Comment #2 from lightside --- Created attachment 200520 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D200520&action= =3Dedit Proposed patch (since 480741 revision) According to GCC compiler documentation, the alternative name for "-O" is "= -O1" for compiler option: https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html#Optimize-Options Probably, possible to use "-O1" instead of "-O2", if needed. I just used so= me default value in ports for amd64 architecture, which returned by `make -C /usr/ports -V CFLAGS` command. The "-O" and "-O2" compiler options are used in /usr/src/share/mk/sys.mk fi= le, based on different conditions, for example: https://github.com/freebsd/freebsd/blob/5c861640127b95aa6b29327a48da153695e= 84c10/share/mk/sys.mk#L164-L177 Also possible, that message in BROKEN_aarch64 variable is outdated and ther= e is no need for related changes for deps/mozilla/js/src/configure file, after OBJC_CLANG_VERSION=3D60 in ports r480741. As I understood, the "-O" compiler flag is used to build deps/mozilla/js/src/shell/js.cpp file: https://github.com/OoliteProject/spidermonkey-ff4/blob/ca2fb5423fab4d72a3dc= 5fec911ce20bda01f223/js/src/shell/js.cpp So, I decided to remove related changes from the patch. I guess, someone ju= st need to check support for "-O" compiler option for aarch64 architecture, otherwise possible to propose patch to change this value for deps/mozilla/js/src/configure file. --=20 You are receiving this mail because: You are the assignee for the bug.=