]> gitweb.factorcode.org Git - factor.git/commitdiff
Deploy hello-world with optimizing compiler since the image is smaller as a result...
authorSlava Pestov <slava@shill.internal.stack-effects.com>
Fri, 8 May 2009 07:36:09 +0000 (02:36 -0500)
committerSlava Pestov <slava@shill.internal.stack-effects.com>
Fri, 8 May 2009 07:36:09 +0000 (02:36 -0500)
extra/hello-world/deploy.factor

index 48c14f7cbafd7cb091160ff1465008c43102e93c..aadffb6ae81c87ed8999dfed16c8ff6237aab000 100755 (executable)
@@ -1,15 +1,15 @@
 USING: tools.deploy.config ;
 H{
-    { deploy-name "Hello world (console)" }
-    { deploy-c-types? f }
-    { deploy-word-props? f }
-    { deploy-ui? f }
-    { deploy-reflection 1 }
-    { deploy-compiler? f }
     { deploy-unicode? f }
+    { deploy-ui? f }
+    { deploy-compiler? t }
+    { deploy-name "Hello world (console)" }
     { deploy-io 2 }
-    { deploy-word-defs? f }
     { deploy-threads? f }
-    { "stop-after-last-window?" t }
+    { deploy-reflection 1 }
     { deploy-math? f }
+    { deploy-word-props? f }
+    { deploy-word-defs? f }
+    { deploy-c-types? f }
+    { "stop-after-last-window?" t }
 }