[pypy-svn] r26224 - pypy/dist/pypy/translator/cl

dialtone at codespeak.net dialtone at codespeak.net
Mon Apr 24 08:01:49 CEST 2006


Author: dialtone
Date: Mon Apr 24 08:01:45 2006
New Revision: 26224

Added:
   pypy/dist/pypy/translator/cl/openmclinvoke.sh   (contents, props changed)
Modified:
   pypy/dist/pypy/translator/cl/buildcl.py
Log:
add openmcl support

Modified: pypy/dist/pypy/translator/cl/buildcl.py
==============================================================================
--- pypy/dist/pypy/translator/cl/buildcl.py	(original)
+++ pypy/dist/pypy/translator/cl/buildcl.py	Mon Apr 24 08:01:45 2006
@@ -23,6 +23,9 @@
     cl = os.getenv("PYPY_CL")
     if cl:
         return cl
+    if is_on_path("openmcl"):
+        if is_on_path("openmclinvoke.sh"):
+            return "sbclinvoke.sh"
     if is_on_path("clisp"):
         return "clisp"
     if is_on_path("lisp"):

Added: pypy/dist/pypy/translator/cl/openmclinvoke.sh
==============================================================================
--- (empty file)
+++ pypy/dist/pypy/translator/cl/openmclinvoke.sh	Mon Apr 24 08:01:45 2006
@@ -0,0 +1,3 @@
+#!/bin/sh
+# Copy this to your PATH
+openmcl --batch --load $1



More information about the Pypy-commit mailing list