Changeset e7b1f5b for GNUmakefile


Ignore:
Timestamp:
09/28/18 12:53:22 (6 years ago)
Author:
Hal Finkel <hfinkel@…>
Branches:
master, pympi
Children:
0654f4c
Parents:
b060d3c (diff), be75350 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Hal Finkel <hfinkel@…> (09/28/18 12:53:22)
git-committer:
Hal Finkel <hfinkel@…> (09/28/18 12:53:22)
Message:

Merge branch 'master' of git.mcs.anl.gov:genericio

Conflicts:

GNUmakefile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GNUmakefile

    r2c47b73 re7b1f5b  
    6363BASE_CPPFLAGS := $(BLOSC_CPPFLAGS) -I. -D__STDC_CONSTANT_MACROS 
    6464 
     65UNAME_S := $(shell uname -s) 
     66ifeq ($(UNAME_S),Linux) 
     67    OPENMPFLAG=-fopenmp 
     68endif 
     69 
    6570FEDIR = frontend 
    66 FE_CFLAGS := -g -fPIC -O3 -fopenmp -std=gnu99 
     71FE_CFLAGS := -g -fPIC -O3 $(OPENMPFLAG) -std=gnu99 
    6772FE_CPPFLAGS := $(BASE_CPPFLAGS) -Ithirdparty/sqlite -DGENERICIO_NO_MPI 
    6873 
    6974MPIDIR = mpi 
    70 MPI_CFLAGS := -g -O3 -fopenmp -std=gnu99 
     75MPI_CFLAGS := -g -O3 $(OPENMPFLAG) -std=gnu99 
    7176MPI_CPPFLAGS := $(BASE_CPPFLAGS) 
    7277 
Note: See TracChangeset for help on using the changeset viewer.