diff options
author | Eunbong Song <eunb.song@samsung.com> | 2015-04-24 04:36:27 +0000 |
---|---|---|
committer | Sasha Levin <sasha.levin@oracle.com> | 2015-05-13 06:09:09 -0400 |
commit | d1e40e592678b8955a8ed36bdeaf42929822302e (patch) | |
tree | b99bbfddda4ed31acfad9308916715b21882e17d /tools | |
parent | b787f68c36d49bb1d9236f403813641efa74a031 (diff) | |
download | op-kernel-dev-d1e40e592678b8955a8ed36bdeaf42929822302e.zip op-kernel-dev-d1e40e592678b8955a8ed36bdeaf42929822302e.tar.gz |
tools/liblockdep: Fix linker error in case of cross compile
If we try to cross compile liblockdep, even if we set the CROSS_COMPILE variable
the linker error can occur because LD is not set with CROSS_COMPILE.
This patch adds "LD" can be set automatically with CROSS_COMPILE variable so
fixes linker error problem.
Signed-off-by: Eunbong Song <eunb.song@samsung.com>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/lib/lockdep/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/lib/lockdep/Makefile b/tools/lib/lockdep/Makefile index 0c356fb..18ffccf 100644 --- a/tools/lib/lockdep/Makefile +++ b/tools/lib/lockdep/Makefile @@ -14,9 +14,10 @@ define allow-override $(eval $(1) = $(2))) endef -# Allow setting CC and AR, or setting CROSS_COMPILE as a prefix. +# Allow setting CC and AR and LD, or setting CROSS_COMPILE as a prefix. $(call allow-override,CC,$(CROSS_COMPILE)gcc) $(call allow-override,AR,$(CROSS_COMPILE)ar) +$(call allow-override,LD,$(CROSS_COMPILE)ld) INSTALL = install |