.\"Man page for condor_compile .\"Generated by makeman on Tue May 29 00:38:53 2018 .TH condor_compile 1 "May 2018" .SH Name .P condor_compile create \- a relinked executable for use as a standard universe job .P .P .SH Synopsis condor_compile cc | CC | gcc | f77 | g++ | ld | make | ... .P .SH Description .P Use condor_compileto relink a program with the HTCondor libraries for submission as a standard universe job. The HTCondor libraries provide the program with additional support, such as the capability to produce checkpoints, which facilitate the standard universe mode of operation. condor_compilerequires access to the source or object code of the program to be submitted; if source or object code for the program is not available, then the program must use another universe, such as vanilla. Source or object code may not be available if there is only an executable binary, or if a shell script is to be executed as an HTCondor job. .P To use condor_compile, issue the command condor_compilewith command line arguments that form the normally entered command to compile or link the application. Resulting executables will have the HTCondor libraries linked in. For example, .P .br condor_compile cc -O -o myprogram.condor file1.c file2.c ... .P will produce the binary myprogram.condor , which is relinked for HTCondor, capable of checkpoint/migration/remote system calls, and ready to submit as a standard universe job. .P If the HTCondor administrator has opted to fully install condor_compile, then condor_compilecan be followed by practically any command or program, including make or shell script programs. For example, the following would all work: .P .br condor_compile make .br .br condor_compile make install .br .br condor_compile f77 -O mysolver.f .br .br condor_compile /bin/csh compile-me-shellscript .P If the HTCondor administrator has opted to only do a partial install of condor_compile, then you are restricted to following condor_compilewith one of these programs: .P .br cc (the system C compiler) .br .br c89 (POSIX compliant C compiler, on some systems) .br .br CC (the system C++ compiler) .br .br f77 (the system FORTRAN compiler) .br .br gcc (the GNU C compiler) .br .br g++ (the GNU C++ compiler) .br .br g77 (the GNU FORTRAN compiler) .br .br ld (the system linker) .P NOTE: If you explicitly call ldwhen you normally create your binary, instead use: .P .br condor_compile ld .P .SH Exit Status .P condor_compileis a script that executes specified compilers and/or linkers. If an error is encountered before calling these other programs, condor_compilewill exit with a status value of 1 (one). Otherwise, the exit status will be that given by the executed program. .P .SH Author Center for High Throughput Computing, University of Wisconsin-Madison .SH Copyright Copyright (C) 1990-2016 Center for High Throughput Computing, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI. All Rights Reserved. Licensed under the Apache License, Version 2.0.