[Bug 197130] [mips] Define mips ARCH as 32 bit only
    bugzilla-noreply at freebsd.org 
    bugzilla-noreply at freebsd.org
       
    Tue Jan 27 17:24:17 UTC 2015
    
    
  
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 at FreeBSD.org
          Reporter: sbruno at FreeBSD.org
                CC: freebsd-mips at FreeBSD.org, mayo at oyam.ca
             Flags: maintainer-feedback?(mayo at oyam.ca)
                CC: mayo at 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 at FreeBSD.org> ---
Maintainer CC'd
-- 
You are receiving this mail because:
You are on the CC list for the bug.
    
    
More information about the freebsd-mips
mailing list