Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Development
openfoam
Commits
35d682a4
Commit
35d682a4
authored
Jun 01, 2018
by
Alexey Matveichev
Committed by
Mark OLESEN
Jun 01, 2018
Browse files
COMP: make the scotch librt dependency conditional
parent
8058184b
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/parallel/decompose/ptscotchDecomp/Make/options
View file @
35d682a4
...
...
@@ -16,4 +16,9 @@ LIB_LIBS = \
-L$(FOAM_EXT_LIBBIN) \
-L$(FOAM_EXT_LIBBIN)/$(FOAM_MPI) \
-lptscotch -lptscotcherrexit \
-lscotch -lrt
-lscotch
/* May require librt, but scotch does not declare the dependency */
ifeq ("$(SO)","so")
LIB_LIBS += -lrt
endif
src/parallel/decompose/scotchDecomp/Make/options
View file @
35d682a4
...
...
@@ -12,4 +12,9 @@ EXE_INC = \
LIB_LIBS = \
-L$(SCOTCH_LIB_DIR) \
-lscotch -lscotcherrexit -lrt
-lscotch -lscotcherrexit
/* May require librt, but scotch does not declare the dependency */
ifeq ("$(SO)","so")
LIB_LIBS += -lrt
endif
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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