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

RE: [Condor-users] condor_compile a shell script



On Thu, 4 Aug 2005 09:23:14 -0400, Ian Chesal wrote
> > I condor_compile a bash script ( sh_loop in example ) but it said
> > "Internal
> > ld was not invoked"
> > 
> > I have fully installed condor compile (change ld to condor ld) and
> read
> > the
> > FAQ - "When I use condor_ compile to produce a job, I get an error
> that
> > says, "Internal ld was not invoked!". What does this mean?"
> > but it doesn't mention about the error with shell script ...
> > So, does anyone have the experience about condor_compiling  a shell
> script
> 
> You cannot compile a shell script with condor_compile. See:
> 
> http://www.cs.wisc.edu/condor/manual/v6.7/condor_compile.html
> 
> You can use condor_compile with the following compilers:
> 
> gcc, g++, g77, cc, acc, c89, CC, f77, fort77, ld, pgcc, pgf77, pgf90,
>  or pghpf
> 
> So you have to write in a language supported by one of those compilers.
> None of them support bash.
> 
> To use the sh_loop example simply type:
> 
> 	condor_submit sh_loop.cmd
> 
> You'll need to have bash in your path on your startd node for the
> sh_loop script to execute properly.
> 
> - Ian
> 
> _______________________________________________
> Condor-users mailing list
> Condor-users@xxxxxxxxxxx
> https://lists.cs.wisc.edu/mailman/listinfo/condor-users

Thanks Ian

But I read the following in 
http://www.cs.wisc.edu/condor/manual/v6.7/condor_compile.html

"
If the Condor administrator has opted to fully install condor_ compile, then 
condor_ compile can be followed by practically any command or program, 
including make or shell-script programs. For example, the following would 
all work: 

        condor_compile make 

        condor_compile make install 

        condor_compile f77 -O mysolver.f 

        condor_compile /bin/csh compile-me-shellscript

"

Doesn't it mean that I can condor_compile shell script ?? 


Best regards