Skip to content

Commit a3e0274

Browse files
authored
Add USE_PERL fallback option for create script used with FUNCTION_PROFILE
1 parent f1c570a commit a3e0274

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

interface/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,8 +531,11 @@ $(BLASOBJS) $(BLASOBJS_P) : functable.h
531531
$(BLASOBJS) $(BLASOBJS_P) : override CFLAGS += -DPROFILE_FUNC_NAME=interface_$(*F)
532532

533533
functable.h : Makefile
534+
ifndef USE_PERL
534535
./create $(FUNCALLFILES) > functable.h
535-
536+
else
537+
./create.pl $(FUNCALLFILES) > functable.h
538+
endif
536539
endif
537540

538541
clean ::

0 commit comments

Comments
 (0)