From 7cf5d6e1c05d3147ee7890865c900757fc42d9ef Mon Sep 17 00:00:00 2001 From: NaN-git Date: Wed, 3 Feb 2021 16:29:22 +0100 Subject: [PATCH] Cross compilation fix Signed-off-by: Sinacam --- blas/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blas/Makefile b/blas/Makefile index ff42789..e0293a4 100644 --- a/blas/Makefile +++ b/blas/Makefile @@ -1,5 +1,5 @@ -AR = ar rcv -RANLIB = ranlib +AR ?= ar +RANLIB ?= ranlib HEADERS = blas.h blasp.h FILES = dnrm2.o daxpy.o ddot.o dscal.o @@ -8,7 +8,7 @@ CFLAGS = $(OPTFLAGS) FFLAGS = $(OPTFLAGS) blas: $(FILES) $(HEADERS) - $(AR) blas.a $(FILES) + $(AR) rcv blas.a $(FILES) $(RANLIB) blas.a clean: -- 2.40.0