diff options
author | Rabin Vincent <[email protected]> | 2013-05-17 22:27:44 +0200 |
---|---|---|
committer | Arnaldo Carvalho de Melo <[email protected]> | 2013-05-29 15:46:36 +0300 |
commit | 3c4797d46c14fa0c7cf733a77bd4b28875078b53 (patch) | |
tree | ea31aa53e132dfba91309bbe22e6922d1c367c89 | |
parent | 0ac129e008971aea9f6b17cb77a12e2ffc9dc80c (diff) |
tools lib lk: Respect CROSS_COMPILE
Make lk use CROSS_COMPILE, in order to be able to cross compile perf
again.
Signed-off-by: Rabin Vincent <[email protected]>
Cc: Ingo Molnar <[email protected]>
Cc: Borislav Petkov <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Arnaldo Carvalho de Melo <[email protected]>
-rw-r--r-- | tools/lib/lk/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/lib/lk/Makefile b/tools/lib/lk/Makefile index 926cbf3efc7f..2c5a19733357 100644 --- a/tools/lib/lk/Makefile +++ b/tools/lib/lk/Makefile @@ -1,5 +1,8 @@ include ../../scripts/Makefile.include +CC = $(CROSS_COMPILE)gcc +AR = $(CROSS_COMPILE)ar + # guard against environment variables LIB_H= LIB_OBJS= |