.\"Man page for condor_compile .\"Generated by makeman on Sun Feb 1 21:58:27 2015 .TH condor_compile 1 "February 2015" .SH Name .P condor_compile create \- a relinked executable for submission to the Standard Universe .P .SH Synopsis condor_compile cc | CC | gcc | f77 | g++ | ld | make | ... .P .SH Description .P Use condor_compile to relink a program with the Condor libraries for submission into Condor's Standard Universe. The Condor libraries provide the program with additional support, such as the capability to checkpoint, which is required in Condor's Standard Universe mode of operation. condor_compile requires access to the source or object code of the program to be submitted; if source or object code for the program is not available (i.e. only an executable binary, or if it is a shell script), then the program must submitted into Condor's Vanilla Universe. See the reference page for condor_submitand/or consult the "Condor Users and Administrators Manual" for further information. .P To use condor_compile, simply enter "condor_compile" followed by whatever you would normally enter to compile or link your application. Any resulting executables will have the Condor libraries linked in. For example: .P .br condor_compile cc -O -o myprogram.condor file1.c file2.c ... .P will produce a binary "myprogram.condor" which is relinked for Condor, capable of checkpoint/migration/remote-system-calls, and ready to submit to the Standard Universe. .P If the Condor 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 Condor administrator has opted to only do a partial install of condor_compile, the 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 use explicitly call ``ld'' when you normally create your binary, simply use: .P .br condor_compile ld .P instead. .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 Condor Team, University of Wisconsin-Madison .SH Copyright Copyright (C) 1990-2012 Condor Team, Computer Sciences Department, University of Wisconsin-Madison, Madison, WI. All Rights Reserved. Licensed under the Apache License, Version 2.0. .P See the Condor Version 7.8.2 Manualor http://www.condorproject.org/licensefor additional notices. condor-admin@cs.wisc.edu