[Vm-dev] [commit][2770] add option --enableFastBlt

commits at squeakvm.org commits at squeakvm.org
Thu Aug 15 14:27:27 UTC 2013


Revision: 2770
Author:   piumarta
Date:     2013-08-15 07:27:27 -0700 (Thu, 15 Aug 2013)
Log Message:
-----------
add option --enableFastBlt

Modified Paths:
--------------
    trunk/platforms/unix/CMakeLists.txt
    trunk/platforms/unix/cmake/configure

Modified: trunk/platforms/unix/CMakeLists.txt
===================================================================
--- trunk/platforms/unix/CMakeLists.txt	2013-08-15 14:27:04 UTC (rev 2769)
+++ trunk/platforms/unix/CMakeLists.txt	2013-08-15 14:27:27 UTC (rev 2770)
@@ -1,6 +1,6 @@
 # Yes, it's true: you can write makefiles in COBOL.
 # 
-# Last edited: 2012-09-16 21:19:57 by piumarta on linux64
+# Last edited: 2013-08-11 22:54:35 by piumarta on emilia
 
 PROJECT (squeak)
 
@@ -19,6 +19,10 @@
   SET (scriptsuffix "64")
 ENDIF (DEFINED OPT--image64)
 
+IF (DEFINED OPT--enableFastBlt)
+  SET (ENABLE-FAST-BLT 1)
+ENDIF (DEFINED OPT--enableFastBlt)
+
 SET (prefix  ${CMAKE_INSTALL_PREFIX})
 
 SET (version ${VM_VERSION})

Modified: trunk/platforms/unix/cmake/configure
===================================================================
--- trunk/platforms/unix/cmake/configure	2013-08-15 14:27:04 UTC (rev 2769)
+++ trunk/platforms/unix/cmake/configure	2013-08-15 14:27:27 UTC (rev 2770)
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-# Last edited: 2012-09-16 21:35:15 by piumarta on linux64
+# Last edited: 2013-08-11 23:16:05 by piumarta on emilia
 
 RELEASE_TAG=""
 
@@ -16,6 +16,7 @@
   --without-gl          disable everything that depends on OpenGL
   --without-SUGAR       disable support for SUGAR environment
   --image64             build a VM for running 64-bit images
+  --enableFastBlt       use optimised BitBlt (not supported on most platforms)
 Notes:
 1. By default the CFLAGS will be set to create optimised binaries.  If you are
    debugging the VM you probably want to use '--CFLAGS=-g' when invoking this



More information about the Vm-dev mailing list