Changes to PURIFY. Doesn't take g77 as an option, so not instrumenting
the fortran routines.
This commit is contained in:
parent
b2cf384cea
commit
bcdfcc46d6
2 changed files with 9 additions and 3 deletions
|
|
@ -79,8 +79,12 @@ ifeq ($(do_ranlib),1)
|
|||
@RANLIB@ $(LAPACKLIB)
|
||||
endif
|
||||
|
||||
#
|
||||
# Right now g77 is not a known compiler to PURIFY. Why,
|
||||
# I don't know. Taking the instrumentation out for now
|
||||
#
|
||||
%.o : %.f
|
||||
$(PURIFY) @F77@ -c $< $(F77_INCLUDES) $(F_FLAGS)
|
||||
@F77@ -c $< $(F77_INCLUDES) $(F_FLAGS)
|
||||
|
||||
$(OBJS): Makefile
|
||||
|
||||
|
|
|
|||
|
|
@ -57,9 +57,11 @@ endif
|
|||
|
||||
%.o : %.cpp
|
||||
$(PURIFY) @CXX@ -c $< @DEFS@ @CXXFLAGS@ @PIC@ $(INCLUDES)
|
||||
|
||||
#
|
||||
# Right now g77 is not known to PURIFY. Why I don't know.
|
||||
#
|
||||
%.o : %.f
|
||||
$(PURIFY) @F77@ -c $< $(F_FLAGS)
|
||||
@F77@ -c $< $(F_FLAGS)
|
||||
|
||||
$(OBJS): Makefile
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue