#!/usr/bin/bash

set -e
set -x

### Compile and run a simple MPI application, via pkg-config

cc -o hello  `pkg-config mpi --libs --cflags` hello.c

mpirun -n 1 ./hello
