logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

MPI Compile - Create MPI Executables | Online Free DevTools by Hexmos

Create MPI executables effortlessly with mpicc, the Open MPI C wrapper compiler. Compile C code and link object files for parallel computing. Free online tool, no registration required.

mpicc

Open MPI C wrapper compiler. More information: https://www.mpich.org/static/docs/latest/www1/mpicc.html.

  • Compile a source code file into an object file:

mpicc -c {{path/to/file.c}}

  • Link an object file and make an executable:

mpicc -o {{executable}} {{path/to/object_file.o}}

  • Compile and link source code in a single command:

mpicc -o {{executable}} {{path/to/file.c}}

See Also