]> gitweb.factorcode.org Git - factor.git/blob - library/platform/native/boot.factor
eb5e241bd27a4781fa62e723298af17fc89d937c
[factor.git] / library / platform / native / boot.factor
1 ! :folding=none:collapseFolds=1:
2
3 ! $Id$
4 !
5 ! Copyright (C) 2004 Slava Pestov.
6
7 ! Redistribution and use in source and binary forms, with or without
8 ! modification, are permitted provided that the following conditions are met:
9
10 ! 1. Redistributions of source code must retain the above copyright notice,
11 !    this list of conditions and the following disclaimer.
12
13 ! 2. Redistributions in binary form must reproduce the above copyright notice,
14 !    this list of conditions and the following disclaimer in the documentation
15 !    and/or other materials provided with the distribution.
16
17 ! THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 ! INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
19 ! FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
20 ! DEVELOPERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 ! SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 ! PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
23 ! OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
24 ! WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
25 ! OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
26 ! ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 USE: arithmetic
29 USE: combinators
30 USE: format
31 USE: inspector
32 USE: init
33 USE: kernel
34 USE: lists
35 USE: logic
36 USE: math
37 USE: namespaces
38 USE: stack
39 USE: stdio
40 USE: streams
41 USE: strings
42 USE: vectors
43 USE: words
44 USE: cross-compiler
45
46 primitives,
47 [
48     "/library/ansi.factor"
49     "/library/assoc.factor"
50     "/library/cross-compiler.factor"
51     "/library/combinators.factor"
52     "/library/cons.factor"
53     "/library/continuations.factor"
54     "/library/debugger.factor"
55     "/library/errors.factor"
56     "/library/format.factor"
57     "/library/hashtables.factor"
58     "/library/image.factor"
59     "/library/init.factor"
60     "/library/inspector.factor"
61     "/library/inspect-vocabularies.factor"
62     "/library/interpreter.factor"
63     "/library/lists.factor"
64     "/library/list-namespaces.factor"
65     "/library/logging.factor"
66     "/library/logic.factor"
67     "/library/namespaces.factor"
68     "/library/prettyprint.factor"
69     "/library/random.factor"
70     "/library/sbuf.factor"
71     "/library/stdio.factor"
72     "/library/stream.factor"
73     "/library/strings.factor"
74     "/library/styles.factor"
75     "/library/telnetd.factor"
76     "/library/vectors.factor"
77     "/library/vector-combinators.factor"
78     "/library/vocabularies.factor"
79     "/library/vocabulary-style.factor"
80     "/library/words.factor"
81     "/library/math/math-combinators.factor"
82     "/library/math/namespace-math.factor"
83     "/library/test/test.factor"
84     "/library/platform/native/arithmetic.factor"
85     "/library/platform/native/errors.factor"
86     "/library/platform/native/io-internals.factor"
87     "/library/platform/native/stream.factor"
88     "/library/platform/native/kernel.factor"
89     "/library/platform/native/namespaces.factor"
90     "/library/platform/native/strings.factor"
91     "/library/platform/native/parse-numbers.factor"
92     "/library/platform/native/parser.factor"
93     "/library/platform/native/parse-syntax.factor"
94     "/library/platform/native/parse-stream.factor"
95     "/library/platform/native/prettyprint.factor"
96     "/library/platform/native/random.factor"
97     "/library/platform/native/stack.factor"
98     "/library/platform/native/words.factor"
99     "/library/platform/native/vocabularies.factor"
100     "/library/platform/native/unparser.factor"
101     "/library/platform/native/cross-compiler.factor"
102     "/library/platform/native/init.factor"
103 ] [
104     cross-compile-resource
105 ] each
106
107 version,
108
109 [ boot ] (set-boot)