How to compile d_example.cpp in the example directory? #90
Replies: 1 comment
-
I'm not sure, I don't use the Makefiles, they are from the upstream MUMPS project https://mumps-solver.org |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was trying to compile d_example.cpp in the "example" directory. I modified makefile to use mpicxx and mpif90 sequentially, but i failed.
d_example: $$@.o$@ $ (OPTL) $@.o $ (LIBDMUMPS) $(LORDERINGS) $ (LIBS) $(RPATH_OPT) $ (LIBBLAS) $(LIBOTHERS)
mpif90 -o
.SUFFIXES: .c .F .o .cpp
$(FC) $ (OPTF) -I. -I$(topdir)/include -I$(topdir)/src $(INCS) -c $ .F $(OUTF)$.o
$(CC) $ (OPTC) $(CDEFS) -I. -I$ (topdir)/include -I$(topdir)/src $(INCS) -c $ .c $(OUTC)$.o$(OPTC) $ (CDEFS) -I. -I$(topdir)/include -I$(topdir)/src $(INCS) -c $ .cpp $(OUTC)$.o
.F.o:
.c.o:
.cpp.o:
mpicxx
Beta Was this translation helpful? Give feedback.
All reactions