Fix accidental tools.deploy -> compiler dependency

release
Slava Pestov 2007-11-05 01:12:21 -05:00
parent 821cabeb44
commit b4f6d7aa1c
4 changed files with 33 additions and 8 deletions

View File

@ -0,0 +1,12 @@
USING: tools.deploy.config ;
V{
{ deploy-ui? t }
{ deploy-io 1 }
{ deploy-reflection 2 }
{ deploy-compiler? t }
{ deploy-math? t }
{ deploy-word-props? f }
{ deploy-c-types? f }
{ "stop-after-last-window?" t }
{ "bundle-name" "cfdg.models.flower6.app" }
}

View File

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

View File

@ -0,0 +1,13 @@
USING: tools.deploy.config ;
V{
{ deploy-ui? t }
{ deploy-io 2 }
{ deploy-reflection 1 }
{ deploy-compiler? t }
{ deploy-math? t }
{ deploy-word-props? f }
{ deploy-word-defs? f }
{ deploy-c-types? f }
{ "stop-after-last-window?" t }
{ "bundle-name" "Belt Tire.app" }
}

View File

@ -5,7 +5,7 @@ assocs kernel vocabs words sequences memory io system arrays
continuations math definitions mirrors splitting parser classes continuations math definitions mirrors splitting parser classes
inspector layouts vocabs.loader prettyprint.config prettyprint inspector layouts vocabs.loader prettyprint.config prettyprint
debugger io.streams.c io.streams.duplex io.files io.backend debugger io.streams.c io.streams.duplex io.files io.backend
quotations words.private tools.deploy.config compiler ; quotations words.private tools.deploy.config ;
IN: tools.deploy.shaker IN: tools.deploy.shaker
: show ( msg -- ) : show ( msg -- )
@ -24,7 +24,7 @@ IN: tools.deploy.shaker
"Stripping debugger" show "Stripping debugger" show
"resource:extra/tools/deploy/shaker/strip-debugger.factor" "resource:extra/tools/deploy/shaker/strip-debugger.factor"
run-file run-file
recompile do-parse-hook
] when ; ] when ;
: strip-libc ( -- ) : strip-libc ( -- )
@ -32,7 +32,7 @@ IN: tools.deploy.shaker
"Stripping manual memory management debug code" show "Stripping manual memory management debug code" show
"resource:extra/tools/deploy/shaker/strip-libc.factor" "resource:extra/tools/deploy/shaker/strip-libc.factor"
run-file run-file
recompile do-parse-hook
] when ; ] when ;
: strip-cocoa ( -- ) : strip-cocoa ( -- )
@ -40,7 +40,7 @@ IN: tools.deploy.shaker
"Stripping unused Cocoa methods" show "Stripping unused Cocoa methods" show
"resource:extra/tools/deploy/shaker/strip-cocoa.factor" "resource:extra/tools/deploy/shaker/strip-cocoa.factor"
run-file run-file
recompile do-parse-hook
] when ; ] when ;
: strip-assoc ( retained-keys assoc -- newassoc ) : strip-assoc ( retained-keys assoc -- newassoc )