2025-09-14 18:48:49 -06:00
|
|
|
# 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:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`mpicc -c {{path/to/file}}.c`
|
2025-09-14 18:48:49 -06:00
|
|
|
|
|
|
|
|
- Link an object file and make an executable:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`mpicc -o {{executable}} {{path/to/object_file}}.o`
|
2025-09-14 18:48:49 -06:00
|
|
|
|
|
|
|
|
- Compile and link source code in a single command:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`mpicc -o {{executable}} {{path/to/file}}.c`
|