Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] 'simple' c++ program
- Date: Tue, 22 Jan 2008 08:49:52 +1030
- From: "Alan Cass" <alan.ocais@xxxxxxxxx>
- Subject: Re: [Condor-users] 'simple' c++ program
Hey Steve,
How was prog.exe compiled? If it was compiled with cygwin g++ it probably calls the Cygwin DLL (you can check with
objdump -p prog.exe | grep "DLL Name"
to see all DLLs it uses). This DLL is probably not necessarily available on the execute machine. A quick fix would be to just transfer the
cygwin1.dll (or any other unavailable, but required, DLLs) with the executable.
Alan
On 22/01/2008, Stephen Upton <
scupton@xxxxxxx> wrote:Hi all,
I'm trying to run a simple c++ program. I'm using version
6.8.1 (I
know - I need to upgrade!) on a windows xp cluster. However, I'm
submitting my job from a cygwin prompt. It appears to run since I get
output from my echo statements in the .bat file that I use to call
the c++ program. Here's the submit:
*****
Executable = prog.bat
requirements = OpSys == "WINNT50" || OpSys == "WINNT51"
getenv = true
Universe = vanilla
Error = Output/err.$(process)
Output = Output/out.$(process)
Log = Output/log.$(process)
Should_Transfer_files = YES
When_To_Transfer_Output = ON_EXIT
transfer_input_files = prog.exe, R2.txt, initialnodes.txt
,
nodearccosts.txt, nodepcm.txt, S10solutionfile.txt
Arguments = 44 20 33750 12825 R2.txt
Queue
***
and here's prog.bat
echo running prog.exe %1 %2 %3 %4 %5
prog %1 %2 %3 %4 %5
echo done
****
I suspect it has something to do with prog.exe but not sure where to
look. I don't have access to the source code, but have access to the
programmer. ;-)
I've seen various other emails that are similar,
e.g., running
Fortran programs, and I think I've covered the bases, but still feel
I'm missing something easy.
thanx
steve upton
_______________________________________________
Condor-users mailing list
To unsubscribe, send a message to condor-users-request@xxxxxxxxxxx with a
subject: Unsubscribe
You can also unsubscribe by visiting
https://lists.cs.wisc.edu/mailman/listinfo/condor-users
The archives can be found at:
https://lists.cs.wisc.edu/archive/condor-users/