Add a http performance test script based on wrk
[iec.git] / src / use_cases / seba_on_arm / patches / kafka-exporter / 0001-modify-Makefile-for-aarch64-support.patch
1 From 0d93a605f2a8dc34ce4040e5f34ae68d636fce8b Mon Sep 17 00:00:00 2001
2 From: jialv01 <Jianlin.Lv@arm.com>
3 Date: Wed, 27 Mar 2019 15:25:58 +0800
4 Subject: [PATCH] modify Makefile for aarch64 support
5
6 Signed-off-by: jialv01 <Jianlin.Lv@arm.com>
7 ---
8  Makefile | 2 +-
9  1 file changed, 1 insertion(+), 1 deletion(-)
10
11 diff --git a/Makefile b/Makefile
12 index e2ba788..d44171c 100644
13 --- a/Makefile
14 +++ b/Makefile
15 @@ -55,7 +55,7 @@ release: promu github-release
16  
17  promu:
18         @GOOS=$(shell uname -s | tr A-Z a-z) \
19 -               GOARCH=$(subst x86_64,amd64,$(patsubst i%86,386,$(shell uname -m))) \
20 +               GOARCH=$(subst aarch64,arm64,$(subst x86_64,amd64,$(patsubst i%86,386,$(shell uname -m)))) \
21                 $(GO) get -u github.com/prometheus/promu
22  
23  github-release:
24 -- 
25 2.17.1
26