cs205-lecture-examples

Example codes used during Harvard CS205 lectures
git clone https://git.0xfab.ch/cs205-lecture-examples.git
Log | Files | Refs | README | LICENSE

Makefile.defs.magny0.gnu (299B)


      1 # Uncomment the following line to use OpenMP 2.0 features
      2 #OMPFLAG = -DOMPVER2
      3 # Uncomment the following line to use OpenMP 3.0 features
      4 OMPFLAG = -DDISABLE_BARRIER_TEST -DOMPVER2 -DOMPVER3
      5 
      6 CC = /usr/local/bin/gcc-4.6 
      7 CFLAGS = -fopenmp -O1 -lm
      8 LDFLAGS = -fopenmp -O1 -lm
      9 CPP = /usr/bin/cpp
     10 LIBS =