Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 27 Jan 2015 17:24:16 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 197130] [mips] Define mips ARCH as 32 bit only
Message-ID:  <bug-197130-13@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk>

 # 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 <bugzilla@FreeBSD.org> ---
Maintainer CC'd

-- 
You are receiving this mail because:
You are the assignee for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-197130-13>