[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [condor-users] Normal termination (return value 128)





Guy Tel-Zur wrote:

I would appreciate any ideas why the following test program failed.
The job was submitted on an XP personal condor.

Program submit file:

executable = c:\program files\root\bin\root.exe
arguments = -q -b hsimple.C
output = hsimple.out
log = hsimple.log
error = hsimple.err
universe = vanilla
queue


The exit status you are getting is likely caused by a missing shared library. Is root.exe statically linked? Under Linux, it is not, even if you do 'make static'. There is a "mostly statically linked" version called roota. All the root libraries are statically linked, but system libs are not.

Even if you get a statically linked version, you will find it to be fairly unhappy without ROOTSYS and related configuration information.

You should also be able to compile the module (hsimple.C) rather than running it under the interpreter. This can be done either for a regular vanilla job or, with a little effort, via condor_compile for standard universe.

--Dan


Condor Support Information: http://www.cs.wisc.edu/condor/condor-support/ To Unsubscribe, send mail to majordomo@xxxxxxxxxxx with unsubscribe condor-users <your_email_address>