factor/library/platform/native/boot.factor

111 lines
3.6 KiB
Factor
Raw Normal View History

! :folding=none:collapseFolds=1:
2004-07-16 02:26:21 -04:00
! $Id$
!
! Copyright (C) 2004 Slava Pestov.
!
! Redistribution and use in source and binary forms, with or without
! modification, are permitted provided that the following conditions are met:
!
! 1. Redistributions of source code must retain the above copyright notice,
! this list of conditions and the following disclaimer.
!
! 2. Redistributions in binary form must reproduce the above copyright notice,
! this list of conditions and the following disclaimer in the documentation
! and/or other materials provided with the distribution.
!
! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
USE: arithmetic
USE: combinators
USE: format
USE: inspector
2004-07-17 19:33:35 -04:00
USE: init
2004-07-16 02:26:21 -04:00
USE: kernel
USE: lists
USE: logic
USE: math
USE: namespaces
USE: stack
USE: stdio
USE: streams
USE: strings
USE: vectors
USE: words
USE: cross-compiler
2004-07-16 03:05:26 -04:00
primitives,
2004-07-16 02:26:21 -04:00
[
2004-07-16 03:05:26 -04:00
"/library/ansi.factor"
"/library/assoc.factor"
2004-07-30 02:44:12 -04:00
"/library/cross-compiler.factor"
2004-07-16 03:05:26 -04:00
"/library/combinators.factor"
"/library/cons.factor"
"/library/continuations.factor"
2004-07-17 19:33:35 -04:00
"/library/debugger.factor"
2004-07-17 18:35:09 -04:00
"/library/errors.factor"
2004-07-16 03:05:26 -04:00
"/library/format.factor"
"/library/hashtables.factor"
2004-07-30 02:44:12 -04:00
"/library/image.factor"
2004-07-16 03:05:26 -04:00
"/library/init.factor"
"/library/inspector.factor"
"/library/inspect-vocabularies.factor"
2004-07-16 03:05:26 -04:00
"/library/interpreter.factor"
2004-07-30 02:44:12 -04:00
"/library/lists.factor"
2004-07-16 03:05:26 -04:00
"/library/list-namespaces.factor"
"/library/logging.factor"
"/library/logic.factor"
"/library/namespaces.factor"
"/library/prettyprint.factor"
"/library/random.factor"
2004-07-16 03:05:26 -04:00
"/library/sbuf.factor"
"/library/stdio.factor"
"/library/stream.factor"
"/library/strings.factor"
"/library/styles.factor"
"/library/telnetd.factor"
2004-07-16 03:05:26 -04:00
"/library/vectors.factor"
"/library/vector-combinators.factor"
"/library/vocabularies.factor"
"/library/vocabulary-style.factor"
"/library/words.factor"
"/library/math/math-combinators.factor"
2004-08-05 20:29:52 -04:00
"/library/math/list-math.factor"
2004-07-16 03:05:26 -04:00
"/library/math/namespace-math.factor"
2004-08-04 03:12:55 -04:00
"/library/test/test.factor"
2004-07-30 02:44:12 -04:00
"/library/platform/native/arithmetic.factor"
2004-07-16 03:05:26 -04:00
"/library/platform/native/errors.factor"
"/library/platform/native/io-internals.factor"
"/library/platform/native/stream.factor"
"/library/platform/native/kernel.factor"
"/library/platform/native/namespaces.factor"
2004-08-04 23:20:27 -04:00
"/library/platform/native/strings.factor"
"/library/platform/native/parse-numbers.factor"
2004-07-16 03:05:26 -04:00
"/library/platform/native/parser.factor"
"/library/platform/native/parse-syntax.factor"
2004-07-18 19:52:01 -04:00
"/library/platform/native/parse-stream.factor"
2004-07-16 03:05:26 -04:00
"/library/platform/native/prettyprint.factor"
"/library/platform/native/random.factor"
2004-07-16 03:05:26 -04:00
"/library/platform/native/stack.factor"
"/library/platform/native/words.factor"
"/library/platform/native/vocabularies.factor"
"/library/platform/native/unparser.factor"
2004-07-30 16:22:20 -04:00
"/library/platform/native/cross-compiler.factor"
2004-07-16 03:05:26 -04:00
"/library/platform/native/init.factor"
] [
cross-compile-resource
] each
2004-07-16 02:26:21 -04:00
2004-07-16 03:05:26 -04:00
version,
2004-07-16 02:26:21 -04:00
2004-07-16 03:05:26 -04:00
[ boot ] (set-boot)