Add USE_PERL fallback option for create script used with FUNCTION_PROFILE

This commit is contained in:
Martin Kroeker 2022-05-22 18:32:19 +02:00 committed by GitHub
parent f1c570a5f1
commit a3e02742f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -531,8 +531,11 @@ $(BLASOBJS) $(BLASOBJS_P) : functable.h
$(BLASOBJS) $(BLASOBJS_P) : override CFLAGS += -DPROFILE_FUNC_NAME=interface_$(*F)
functable.h : Makefile
ifndef USE_PERL
./create $(FUNCALLFILES) > functable.h
else
./create.pl $(FUNCALLFILES) > functable.h
endif
endif
clean ::