Created
June 16, 2014 23:41
-
-
Save smutch/3f6fb4b2ef632906fe37 to your computer and use it in GitHub Desktop.
c: Test compilation code for Paul
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Test code | |
* GistID:3f6fb4b2ef632906fe37 | |
* | |
* Complie with: | |
* /usr/local/x86_64/gnu/openmpi-1.6.1/bin/mpicc -lhdf5 -lhdf5_hl -o test test.c | |
* | |
* Run with: | |
* ./test | |
* | |
*/ | |
#include <stdio.h> | |
#include <hdf5.h> | |
#include <hdf5_hl.h> | |
int main(int argc, char *argv[]) | |
{ | |
printf("hello world!\n"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment