]> gitweb.factorcode.org Git - factor.git/commitdiff
remove references to c-types hash from deploy tool
authorJoe Groff <arcata@gmail.com>
Sun, 21 Feb 2010 19:10:52 +0000 (11:10 -0800)
committerJoe Groff <arcata@gmail.com>
Sun, 21 Feb 2010 19:10:52 +0000 (11:10 -0800)
basis/tools/deploy/config/config-docs.factor
basis/tools/deploy/shaker/shaker.factor

index 1df76856ba180703f43e1266811af70c95b40707..740abb0feb0e4055885e86ad5f0feb687ce6f299 100644 (file)
@@ -36,7 +36,7 @@ $nl
 "Off by default. During normal execution, the word definition quotation of a word compiled with the optimizing compiler is not used, so disabling this flag can save space. However, some libraries introspect word definitions dynamically (for example, " { $vocab-link "inverse" } ") and so programs using these libraries must retain word definition quotations." } ;
 
 HELP: deploy-c-types?
-{ $description "Deploy flag. If set, the deploy tool retains the " { $link c-types } " table, otherwise this table is stripped out, saving space."
+{ $description "Deploy flag. If set, the deploy tool retains word properties containing metadata for C types and struct classes; otherwise, these properties are stripped out, saving space."
 $nl
 "Off by default."
 $nl
@@ -49,7 +49,7 @@ $nl
     { $link malloc-object }
     { $link malloc-array }
 }
-"If your program looks up C types dynamically or from words which do not have a stack effect, you must enable this flag, because in these situations the C type lookup is not folded away and the global table must be consulted at runtime." } ;
+"If your program looks up C types dynamically or from words which do not have a stack effect, you must enable this flag, because in these situations the C type lookup code is not folded away and the word properties must be consulted at runtime." } ;
 
 HELP: deploy-math?
 { $description "Deploy flag. If set, the deployed image will contain support for " { $link ratio } " and " { $link complex } " types."
index 54058f1b0d1ca234152aa2c69a1013478ef17b8e..09219a8e5e7612caf4ae17b3ced2c83e3af4b519 100755 (executable)
@@ -378,10 +378,6 @@ IN: tools.deploy.shaker
             ] when
         ] when
 
-        deploy-c-types? get [
-            "c-types" "alien.c-types" lookup ,
-        ] unless
-
         "windows-messages" "windows.messages" lookup [ , ] when*
     ] { } make ;