Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Michael Buehlmann
GenericIO
Commits
5e1952a8
Commit
5e1952a8
authored
May 04, 2018
by
Thomas Uram
Browse files
Use fopenmp only on Linux
parent
56b997ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
GNUmakefile
View file @
5e1952a8
...
...
@@ -61,12 +61,17 @@ BLOSC_CPPFLAGS := \
BASE_CPPFLAGS
:=
$(BLOSC_CPPFLAGS)
-I
.
-D__STDC_CONSTANT_MACROS
UNAME_S
:=
$(
shell
uname
-s
)
ifeq
($(UNAME_S),Linux)
OPENMPFLAG
=
-fopenmp
endif
FEDIR
=
frontend
FE_CFLAGS
:=
-g
-fPIC
-O3
-fopenmp
FE_CFLAGS
:=
-g
-fPIC
-O3
$(OPENMPFLAG)
FE_CPPFLAGS
:=
$(BASE_CPPFLAGS)
-Ithirdparty
/sqlite
-DGENERICIO_NO_MPI
MPIDIR
=
mpi
MPI_CFLAGS
:=
-g
-O3
-fopenmp
MPI_CFLAGS
:=
-g
-O3
$(OPENMPFLAG)
MPI_CPPFLAGS
:=
$(BASE_CPPFLAGS)
$(FEDIR)
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment