From 43f42e0a30023a5b535388a1d9588dde094932a4 Mon Sep 17 00:00:00 2001 From: Maxime SORIN Date: Fri, 17 May 2019 14:30:01 +0200 Subject: [PATCH] Check if the AR environment variable exists for cross compilation Signed-off-by: Maxime SORIN Signed-off-by: Mathieu Desnoyers --- doc/examples/hello-static-lib/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/examples/hello-static-lib/Makefile b/doc/examples/hello-static-lib/Makefile index c5fdd31c..8f094e0e 100644 --- a/doc/examples/hello-static-lib/Makefile +++ b/doc/examples/hello-static-lib/Makefile @@ -18,6 +18,7 @@ LOCAL_CPPFLAGS += -I. LIBS = -ldl -llttng-ust # On Linux #LIBS = -lc -llttng-ust # On BSD AM_V_P := : +AR ?= ar all: hello @@ -28,7 +29,7 @@ lttng-ust-provider-hello.o: tp.c ust_tests_hello.h lttng-ust-provider-hello.a: lttng-ust-provider-hello.o @if $(AM_V_P); then set -x; else echo " AR $@"; fi; \ - ar -rc $@ lttng-ust-provider-hello.o + $(AR) -rc $@ lttng-ust-provider-hello.o hello.o: hello.c @if $(AM_V_P); then set -x; else echo " CC $@"; fi; \ -- 2.34.1