2025-09-14 18:48:49 -06:00
|
|
|
# mpicc
|
|
|
|
|
|
|
|
|
|
> Open MPI C wrapper compiler.
|
|
|
|
|
> Meer informatie: <https://www.mpich.org/static/docs/latest/www1/mpicc.html>.
|
|
|
|
|
|
|
|
|
|
- Compileer een bronbestand naar een objectbestand:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`mpicc -c {{pad/naar/bestand}}.c`
|
2025-09-14 18:48:49 -06:00
|
|
|
|
|
|
|
|
- Koppel een objectbestand en maak een executable:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`mpicc -o {{executable}} {{pad/naar/objectbestand}}.o`
|
2025-09-14 18:48:49 -06:00
|
|
|
|
|
|
|
|
- Compileer en koppel een bronbestand in één commando:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`mpicc -o {{executable}} {{pad/naar/bestand}}.c`
|