From owner-freebsd-mips@FreeBSD.ORG Tue Jan 27 17:24:17 2015 Return-Path: Delivered-To: freebsd-mips@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CFA526D5 for ; Tue, 27 Jan 2015 17:24:17 +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 9D688A34 for ; Tue, 27 Jan 2015 17:24:17 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0RHOH8i024189 for ; Tue, 27 Jan 2015 17:24:17 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-mips@FreeBSD.org Subject: [Bug 197130] [mips] Define mips ARCH as 32 bit only Date: Tue, 27 Jan 2015 17:24:16 +0000 X-Bugzilla-Reason: CC 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: sbruno@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@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 cc 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-mips@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting FreeBSD to MIPS List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jan 2015 17:24:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197130 Bug ID: 197130 Summary: [mips] Define mips ARCH as 32 bit only Product: Ports & Packages Version: Latest Hardware: mips OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: freebsd-ports-bugs@FreeBSD.org Reporter: sbruno@FreeBSD.org CC: freebsd-mips@FreeBSD.org, mayo@oyam.ca Flags: maintainer-feedback?(mayo@oyam.ca) CC: mayo@oyam.ca Please add this to the math/lp_solve Makefile so that the mips.mips target will not try and package the ux64 solver. Verified that this is correct for mips.mips(32 bit) and that mips.mips64 will build the ux64 solver with this patch. 32 bit mips: http://tasty.ysv.freebsd.org/data/11mips32-11-armv6-ports/2015-01-27_16h14m08s/logs/lp_solve-5.5.2.0.log 64 bit mips: http://tasty.ysv.freebsd.org/data/11mips64-11-armv6-ports/2015-01-27_17h03m48s/logs/lp_solve-5.5.2.0.log Index: math/lp_solve/Makefile =================================================================== --- math/lp_solve/Makefile (revision 377963) +++ math/lp_solve/Makefile (working copy) @@ -21,7 +21,7 @@ .include # probably need to add mips here as well -.if ${ARCH} == "i386" || ${ARCH} == "powerpc" || ${ARCH} == armv6 +.if ${ARCH} == "i386" || ${ARCH} == "powerpc" || ${ARCH} == "armv6" || ${ARCH} == "mips" LPSOLVE_ARCH= ux32 .else LPSOLVE_ARCH= ux64 --- Comment #1 from Bugzilla Automation --- Maintainer CC'd -- You are receiving this mail because: You are on the CC list for the bug.