[MLton-commit] r6220

Matthew Fluet fluet at mlton.org
Wed Nov 28 07:51:05 PST 2007


Fixed bug in cross-compilation of gdtoa library.
----------------------------------------------------------------------

U   mlton/trunk/doc/changelog
U   mlton/trunk/runtime/Makefile

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

Modified: mlton/trunk/doc/changelog
===================================================================
--- mlton/trunk/doc/changelog	2007-11-28 14:10:47 UTC (rev 6219)
+++ mlton/trunk/doc/changelog	2007-11-28 15:51:04 UTC (rev 6220)
@@ -1,5 +1,9 @@
 Here are the changes from version 20070826 to version YYYYMMDD.
 
+* 2007-11-28
+   - Fixed bug in cross-compilation of gdtoa library.  Thanks to
+     Wesley Terpstra for the bug report and patch.
+
 * 2007-11-20
    - Fixed bug in pass to flatten refs into containing data structure.
      Thanks to Ruy LeyWild for the bug report.
@@ -28,7 +32,7 @@
      handlers.  Thanks to Sean McLaughlin for the bug report.
 
 * 2007-09-03
-   - Fixed bug in implementation of _export of functions using 'char'
+   - Fixed bug in implementation of _export-ed functions using 'char'
      type.  Thanks to Katsuhiro Ueno for the bug report.
 
 --------------------------------------------------------------------------------

Modified: mlton/trunk/runtime/Makefile
===================================================================
--- mlton/trunk/runtime/Makefile	2007-11-28 14:10:47 UTC (rev 6219)
+++ mlton/trunk/runtime/Makefile	2007-11-28 15:51:04 UTC (rev 6220)
@@ -244,7 +244,7 @@
 	patch -s -p0 <gdtoa-patch
 
 gdtoa/arithchk.out: gdtoa/arithchk.c
-	cd gdtoa && $(CC) -o arithchk.out arithchk.c
+	cd gdtoa && $(CC) $(OPTCFLAGS) $(OPTWARNCFLAGS) -o arithchk.out arithchk.c
 
 gdtoa/arith.h: gdtoa/arithchk.out
 	cd gdtoa && ./arithchk.out >arith.h




More information about the MLton-commit mailing list