mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
[PATCH] Fix crossbuilding checkstack
The previous checkstack fix for UML, which needs to use the host's tools, was wrong in the crossbuilding case. It would use the build host's, rather than the target's, toolchain. This patch removes the old fix and adds an explicit special case for UML, leaving everyone else alone. Signed-off-by: Jeff Dike <jdike@addtoit.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
dd47ea7556
commit
011e3a9ad4
1 changed files with 10 additions and 4 deletions
14
Makefile
14
Makefile
|
@ -1390,12 +1390,18 @@ endif #ifeq ($(mixed-targets),1)
|
|||
|
||||
PHONY += checkstack kernelrelease kernelversion
|
||||
|
||||
# Use $(SUBARCH) here instead of $(ARCH) so that this works for UML.
|
||||
# In the UML case, $(SUBARCH) is the name of the underlying
|
||||
# architecture, while for all other arches, it is the same as $(ARCH).
|
||||
# UML needs a little special treatment here. It wants to use the host
|
||||
# toolchain, so needs $(SUBARCH) passed to checkstack.pl. Everyone
|
||||
# else wants $(ARCH), including people doing cross-builds, which means
|
||||
# that $(SUBARCH) doesn't work here.
|
||||
ifeq ($(ARCH), um)
|
||||
CHECKSTACK_ARCH := $(SUBARCH)
|
||||
else
|
||||
CHECKSTACK_ARCH := $(ARCH)
|
||||
endif
|
||||
checkstack:
|
||||
$(OBJDUMP) -d vmlinux $$(find . -name '*.ko') | \
|
||||
$(PERL) $(src)/scripts/checkstack.pl $(SUBARCH)
|
||||
$(PERL) $(src)/scripts/checkstack.pl $(CHECKSTACK_ARCH)
|
||||
|
||||
kernelrelease:
|
||||
$(if $(wildcard include/config/kernel.release), $(Q)echo $(KERNELRELEASE), \
|
||||
|
|
Loading…
Reference in a new issue