#!/bin/sh

# Alter this if your compiler is installed somewhere else
CXX=g++

# Default library to use
LIB="-lllmpi"

# Compile / Link
$CXX -fpic -pie -pthread $@ $LIB -Wl,-wrap,pthread_create

