Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-linus
* git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-linus: kbuild: fix vmlinux.o link kconfig: made check-lxdialog more portable
This commit is contained in:
6
Makefile
6
Makefile
@@ -794,7 +794,7 @@ endif # ifdef CONFIG_KALLSYMS
|
|||||||
quiet_cmd_vmlinux-modpost = LD $@
|
quiet_cmd_vmlinux-modpost = LD $@
|
||||||
cmd_vmlinux-modpost = $(LD) $(LDFLAGS) -r -o $@ \
|
cmd_vmlinux-modpost = $(LD) $(LDFLAGS) -r -o $@ \
|
||||||
$(vmlinux-init) --start-group $(vmlinux-main) --end-group \
|
$(vmlinux-init) --start-group $(vmlinux-main) --end-group \
|
||||||
$(filter-out $(vmlinux-init) $(vmlinux-main) $(vmlinux-lds) FORCE ,$^)
|
$(filter-out $(vmlinux-init) $(vmlinux-main) FORCE ,$^)
|
||||||
define rule_vmlinux-modpost
|
define rule_vmlinux-modpost
|
||||||
:
|
:
|
||||||
+$(call cmd,vmlinux-modpost)
|
+$(call cmd,vmlinux-modpost)
|
||||||
@@ -818,7 +818,9 @@ endif
|
|||||||
ifdef CONFIG_KALLSYMS
|
ifdef CONFIG_KALLSYMS
|
||||||
.tmp_vmlinux1: vmlinux.o
|
.tmp_vmlinux1: vmlinux.o
|
||||||
endif
|
endif
|
||||||
vmlinux.o: $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) FORCE
|
|
||||||
|
modpost-init := $(filter-out init/built-in.o, $(vmlinux-init))
|
||||||
|
vmlinux.o: $(modpost-init) $(vmlinux-main) FORCE
|
||||||
$(call if_changed_rule,vmlinux-modpost)
|
$(call if_changed_rule,vmlinux-modpost)
|
||||||
|
|
||||||
# The actual objects are generated when descending,
|
# The actual objects are generated when descending,
|
||||||
|
@@ -36,8 +36,10 @@ trap "rm -f $tmp" 0 1 2 3 15
|
|||||||
|
|
||||||
# Check if we can link to ncurses
|
# Check if we can link to ncurses
|
||||||
check() {
|
check() {
|
||||||
echo -e " #include CURSES_LOC \n main() {}" |
|
$cc -xc - -o $tmp 2>/dev/null <<'EOF'
|
||||||
$cc -xc - -o $tmp 2> /dev/null
|
#include CURSES_LOC
|
||||||
|
main() {}
|
||||||
|
EOF
|
||||||
if [ $? != 0 ]; then
|
if [ $? != 0 ]; then
|
||||||
echo " *** Unable to find the ncurses libraries or the" 1>&2
|
echo " *** Unable to find the ncurses libraries or the" 1>&2
|
||||||
echo " *** required header files." 1>&2
|
echo " *** required header files." 1>&2
|
||||||
|
Reference in New Issue
Block a user