Last change
on this file since 6969 was
6969,
checked in by gb, 13 years ago
|
set executable property on
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.6 KB
|
Line | |
---|
1 | #!/bin/sh |
---|
2 | # |
---|
3 | # Change the definition of CCL_DEFAULT_DIRECTORY below to refer to |
---|
4 | # your OpenMCL installation directory. |
---|
5 | # Any definition of CCL_DEFAULT_DIRECTORY already present in the environment |
---|
6 | # takes precedence over definitions made below. |
---|
7 | |
---|
8 | if [ -z "$CCL_DEFAULT_DIRECTORY" ]; then |
---|
9 | CCL_DEFAULT_DIRECTORY=/usr/local/src/ccl |
---|
10 | fi |
---|
11 | |
---|
12 | # This is shorter (& easier to type), making the invocation below |
---|
13 | # a little easier to read. |
---|
14 | |
---|
15 | DD=${CCL_DEFAULT_DIRECTORY} |
---|
16 | |
---|
17 | # If you don't want to guess the name of the OpenMCL kernel on |
---|
18 | # every invocation (or if you want to use a kernel with a |
---|
19 | # non-default name), you might want to uncomment and change |
---|
20 | # the following line: |
---|
21 | #OPENMCL_KERNEL=some_name |
---|
22 | |
---|
23 | # Set the CCL_DEFAULT_DIRECTORY environment variable; |
---|
24 | # the lisp will use this to setup translations for the CCL: logical host. |
---|
25 | |
---|
26 | if [ -z "$OPENMCL_KERNEL" ]; then |
---|
27 | case `uname -s` in |
---|
28 | Darwin) |
---|
29 | case `arch` in |
---|
30 | ppc*) |
---|
31 | OPENMCL_KERNEL=dppccl64 |
---|
32 | ;; |
---|
33 | i386|x86_64) |
---|
34 | OPENMCL_KERNEL=dx86cl64 |
---|
35 | ;; |
---|
36 | esac |
---|
37 | ;; |
---|
38 | Linux) |
---|
39 | case `arch` in |
---|
40 | ppc64) |
---|
41 | OPENMCL_KERNEL=ppccl64 |
---|
42 | ;; |
---|
43 | x86_64) |
---|
44 | OPENMCL_KERNEL=lx86cl64 |
---|
45 | ;; |
---|
46 | *) |
---|
47 | echo "Can't determine machine architecture. Fix this." |
---|
48 | exit 1 |
---|
49 | ;; |
---|
50 | esac |
---|
51 | ;; |
---|
52 | FreeBSD) |
---|
53 | case `uname -m` in |
---|
54 | amd64) |
---|
55 | OPENMCL_KERNEL=fx86cl64 |
---|
56 | ;; |
---|
57 | *) |
---|
58 | echo "unsupported architecture" |
---|
59 | exit 1 |
---|
60 | ;; |
---|
61 | esac |
---|
62 | ;; |
---|
63 | *) |
---|
64 | echo "Can't determine host OS. Fix this." |
---|
65 | exit 1 |
---|
66 | ;; |
---|
67 | esac |
---|
68 | fi |
---|
69 | |
---|
70 | CCL_DEFAULT_DIRECTORY=${DD} exec ${DD}/${OPENMCL_KERNEL} "$@" |
---|
71 | |
---|
Note: See
TracBrowser
for help on using the repository browser.