2007-11-09 03:00:43 -05:00
|
|
|
USING: system vocabs vocabs.loader kernel combinators
|
2008-12-14 21:03:00 -05:00
|
|
|
namespaces sequences io.backend accessors ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: bootstrap.io
|
|
|
|
|
2011-02-27 16:55:43 -05:00
|
|
|
"bootstrap.compiler" require
|
|
|
|
"bootstrap.threads" require
|
|
|
|
|
2011-02-27 18:02:20 -05:00
|
|
|
"io.backend." {
|
|
|
|
{ [ "io-backend" get ] [ "io-backend" get ] }
|
|
|
|
{ [ os unix? ] [ "unix." os name>> append ] }
|
|
|
|
{ [ os windows? ] [ "windows" ] }
|
|
|
|
} cond append require
|