summaryrefslogtreecommitdiff
path: root/com/cmu/compile
blob: e4126ea451480190f44e9ba04853ec7e8bf535c4 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/csh
#
# compile -- compile the Yale Haskell system from scratch.
#
#
cd $Y2
$CMUCL <<EOF
(setf ext:*bytes-consed-between-gcs* 4000000)
(proclaim '(optimize (speed 3) (safety 0) (debug 0) (ext:inhibit-warnings 3)))
(load "cl-support/cl-init")
(quit)
EOF