|
From: John M. <joh...@ya...> - 2001-04-04 16:15:04
|
I decided to build a jar file and use the jython.jar with it. Now I
get errors just trying to build the jar as follows.
$ make
jythonc --all --package com.ry.disk \
--jar ../../../../../../../classes/ry.jar hield.py nnMgr.py
skServer.py skUsageThread.py leMgr.py rtSession.py stMisc.py ckMgr.py
sgQueue.py skSet.py bjFile.py bjIndex.py adSession.py spy.py
processing hield
processing getopt
processing string
$ make
jythonc --all --package com.ry.disk \
--jar ../../../../../../../classes/ry.jar hield.py nnMgr.py
skServer.py
skUsageThread.py leMgr.py rtSession.py stMisc.py ckMgr.py sgQueue.py
skSet.py bjFile.py bjIndex.py adSession.py spy.py
processing hield
processing getopt
processing string
processing stMisc
processing traceback
processing linecache
processing stat
processing javaos
processing javapath
processing nnMgr
processing skServer
processing bjDiskSet
processing glob
Traceback (innermost last):
File "/home/mudd/jython-2.1a1/Tools/jythonc/jythonc.py", line 5, in ?
File "/home/mudd/jython-2.1a1/Tools/jythonc/main.py", line 300, in
main
File "/home/mudd/jython-2.1a1/Tools/jythonc/main.py", line 219, in
doCompile
File "/home/mudd/jython-2.1a1/Tools/jythonc/compile.py", line 215, in
compilefile
File "/home/mudd/jython-2.1a1/Tools/jythonc/compile.py", line 231, in
compile
File "/home/mudd/jython-2.1a1/Tools/jythonc/compile.py", line 296, in
addDependencies
File "/home/mudd/jython-2.1a1/Tools/jythonc/compile.py", line 215, in
compilefile
File "/home/mudd/jython-2.1a1/Tools/jythonc/compile.py", line 231, in
compile
File "/home/mudd/jython-2.1a1/Tools/jythonc/compile.py", line 296, in
addDependencies
File "/home/mudd/jython-2.1a1/Tools/jythonc/compile.py", line 215, in
compilefile
File "/home/mudd/jython-2.1a1/Tools/jythonc/compile.py", line 24, in
getdata
IOError: File not found - /new1/mudd/jython-2.1a1/Lib/glob.py (Too many
open files)
gmake2: *** [../../../../../../../classes/ry.jar] Error 255
$
FYI: The file "glob.py" does seem to be in place. I guess the "too
many open files" problem prevented accessing this file.
$ pwd
/new1/mudd/jython-2.1a1/Lib
$ ls -l glob.py
-rw-r--r-- 1 mudd general 1197 Apr 4 11:49 glob.py
$
The reason that the home directory used above is /home/mudd in some
cases and /new1/mudd in some is because my home directory is linked
from /new1 to /home.
$ cd /home
$ ls -l mudd
lrwxr-xr-x 1 mudd general 10 Sep 21 2000 mudd -> /new1/mudd
$
__________________________________________________
Do You Yahoo!?
Get email at your own domain with Yahoo! Mail.
http://personal.mail.yahoo.com/
|