[MLton-commit] r7286

Wesley Terpstra wesley at mlton.org
Sat Oct 17 14:51:55 PDT 2009


Hurd can only address 800MB of memory.


----------------------------------------------------------------------

U   mlton/trunk/package/debian/changelog
U   mlton/trunk/package/debian/control
U   mlton/trunk/package/debian/heap-size

----------------------------------------------------------------------

Modified: mlton/trunk/package/debian/changelog
===================================================================
--- mlton/trunk/package/debian/changelog	2009-10-17 18:46:29 UTC (rev 7285)
+++ mlton/trunk/package/debian/changelog	2009-10-17 21:51:54 UTC (rev 7286)
@@ -4,10 +4,11 @@
    * caused thrashing on nautilus (amd64)
    * bootstrap troubles from 20070812 on paer (hppa)
   * Solution => fixed-heap based on debian target (rules/heap-size)
-   * 800MB for 32-bit systems (should work well with 1GB RAM)
-    * hppa, hurd-i386, i386, kfreebsd-i386, mips, mipsel, powerpc, s390, sparc
+   * 800MB for 32-bit systems
+    * hppa, i386, kfreebsd-i386, mips, mipsel, powerpc, s390, sparc
    * 1400MB for 64-bit systems
     * alpha, amd64, ia64, kfreebsd-amd64
+   * 700MB for i386-hurd (it can only map 800MB total)
 
  -- Wesley W. Terpstra (Debian) <terpstra at debian.org>  Sat, 17 Oct 2009 19:12:00 +0200
 

Modified: mlton/trunk/package/debian/control
===================================================================
--- mlton/trunk/package/debian/control	2009-10-17 18:46:29 UTC (rev 7285)
+++ mlton/trunk/package/debian/control	2009-10-17 21:51:54 UTC (rev 7286)
@@ -6,7 +6,7 @@
 Standards-Version: 3.8.3.0
 
 Package: mlton
-Architecture: alpha amd64 hppa i386 ia64 kfreebsd-i386 kfreebsd-amd64 mips mipsel powerpc s390 sparc
+Architecture: alpha amd64 hppa hurd-i386 i386 ia64 kfreebsd-i386 kfreebsd-amd64 mips mipsel powerpc s390 sparc
 Depends: ${shlibs:Depends}, gcc, libc6-dev, libgmp3-dev (>= 4.0.1)
 Description: Optimizing compiler for Standard ML
  MLton (mlton.org) is a whole-program optimizing

Modified: mlton/trunk/package/debian/heap-size
===================================================================
--- mlton/trunk/package/debian/heap-size	2009-10-17 18:46:29 UTC (rev 7285)
+++ mlton/trunk/package/debian/heap-size	2009-10-17 21:51:54 UTC (rev 7286)
@@ -11,6 +11,8 @@
 if dpkg-architecture -iany-amd64; then result=1.4g; fi
 if dpkg-architecture -iany-ia64;  then result=1.4g; fi
 
+if dpkg-architecture -ihurd-i386; then result=700m; fi
+
 # Default to more
 if test -z "$result"; then result=2g; echo "Warning: Unknown architecture." >&2; fi
 




More information about the MLton-commit mailing list