cleared up and add questions about intent of work.
[CommonLispStat.git] / external / oct / oct.system
blobd7b70a5dac7718262efec51c146b3c4fe7ee9eca
1 ;;;; -*- Mode: lisp -*-
2 ;;;;
3 ;;;; Copyright (c) 2007 Raymond Toy
4 ;;;;
5 ;;;; Permission is hereby granted, free of charge, to any person
6 ;;;; obtaining a copy of this software and associated documentation
7 ;;;; files (the "Software"), to deal in the Software without
8 ;;;; restriction, including without limitation the rights to use,
9 ;;;; copy, modify, merge, publish, distribute, sublicense, and/or sell
10 ;;;; copies of the Software, and to permit persons to whom the
11 ;;;; Software is furnished to do so, subject to the following
12 ;;;; conditions:
13 ;;;;
14 ;;;; The above copyright notice and this permission notice shall be
15 ;;;; included in all copies or substantial portions of the Software.
16 ;;;;
17 ;;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 ;;;; EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
19 ;;;; OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 ;;;; NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
21 ;;;; HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
22 ;;;; WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 ;;;; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
24 ;;;; OTHER DEALINGS IN THE SOFTWARE.
26 ;; If you want all core functions to be inline (like the C++ code
27 ;; does), add :qd-inline to *features* by enabling the following line.
28 ;; This makes compilation much, much slower, but the resulting code
29 ;; conses much less and is significantly faster.
30 #+(not (and cmu x86))
31 (eval-when (:load-toplevel :compile-toplevel :execute)
32   (pushnew :qd-inline *features*))
34 ;; To be able to inline all the functions, we need to make
35 ;; *inline-expansion-limit* much larger.
37 ;; Not sure we really want to inline everything, but the QD C++ code
38 ;; inlines all of the functions so we do the same.  This makes CMUCL
39 ;; take a very long time to compile the code, and the resulting
40 ;; functions are huge.  (I think div-qd is 8 KB, and sqrt-qd is a
41 ;; whopping 30 KB!)
43 #+(and cmu qd-inline)
44 (eval-when (:load-toplevel :compile-toplevel :execute)
45   (setf ext:*inline-expansion-limit* 1600))
47 (mk:defsystem oct
48   :source-pathname (make-pathname :directory (pathname-directory *load-pathname*))
49   :components
50   ((:file "qd-package")
51    (:file "qd-rep" :depends-on ("qd-package"))
52    #-cmu
53    (:file "qd-dd" :depends-on ("qd-package"))
54    (:file "qd"
55           :depends-on ("qd-rep"))
56    (:file "qd-io"
57           :depends-on ("qd"))
58    (:file "qd-const"
59           :depends-on ("qd-io"))
60    (:file "qd-fun"
61           :depends-on ("qd" "qd-const"))
62    (:file "qd-class"
63           :depends-on ("qd-fun"))
64    (:file "qd-methods"
65           :depends-on ("qd-class"))
66    (:file "qd-format"
67           :depends-on ("qd-methods"))
68    (:file "qd-complex"
69           :depends-on ("qd-methods"))
70    ))