Skip to content

Commit cb8aa3d

Browse files
Paolo 'Blaisorblade' GiarrussoLinus Torvalds
authored andcommitted
[PATCH] uml: use Kbuild tracking for all files and fix compilation output
Move the build of user-offsets to arch/um/sys-$(SUBARCH), where it's located. So we can also build it via Kbuild with its dependency tracking rather than by hand. While hacking here, fix also a lot of little cosmetic things. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <[email protected]> Acked-by: Jeff Dike <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent cb98cdc commit cb8aa3d

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

arch/um/Makefile

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ PHONY += linux
9696
all: linux
9797

9898
linux: vmlinux
99-
ln -f $< $@
99+
@echo ' SYMLINK $@'
100+
$(Q)ln -f $< $@
100101

101102
define archhelp
102103
echo '* linux - Binary kernel image (./linux) - for backward'
@@ -203,8 +204,8 @@ endef
203204
$(ARCH_DIR)/include/uml-config.h : include/linux/autoconf.h
204205
$(call filechk,umlconfig)
205206

206-
$(ARCH_DIR)/user-offsets.s: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.c
207-
$(CC) $(USER_CFLAGS) -S -o $@ $<
207+
$(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s: FORCE
208+
$(Q)$(MAKE) $(build)=$(ARCH_DIR)/sys-$(SUBARCH) $@
208209

209210
define filechk_gen-asm-offsets
210211
(set -e; \
@@ -219,13 +220,11 @@ define filechk_gen-asm-offsets
219220
echo ""; )
220221
endef
221222

222-
$(ARCH_DIR)/include/user_constants.h: $(ARCH_DIR)/user-offsets.s
223+
$(ARCH_DIR)/include/user_constants.h: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s
223224
$(call filechk,gen-asm-offsets)
224225

225-
CLEAN_FILES += $(ARCH_DIR)/user-offsets.s
226-
227226
$(ARCH_DIR)/include/kern_constants.h: $(objtree)/$(ARCH_DIR)/include
228227
@echo ' SYMLINK $@'
229-
$(Q) ln -sf ../../../include/asm-um/asm-offsets.h $@
228+
$(Q)ln -sf ../../../include/asm-um/asm-offsets.h $@
230229

231230
export SUBARCH USER_CFLAGS OS

arch/um/sys-i386/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ subarch-obj-$(CONFIG_MODULES) += kernel/module.o
1010

1111
USER_OBJS := bugs.o ptrace_user.o sigcontext.o fault.o stub_segv.o
1212

13-
include arch/um/scripts/Makefile.rules
13+
USER_OBJS += user-offsets.s
14+
extra-y += user-offsets.s
1415

1516
extra-$(CONFIG_MODE_TT) += unmap.o
1617

18+
include arch/um/scripts/Makefile.rules
19+
1720
$(obj)/stub_segv.o $(obj)/unmap.o: \
1821
_c_flags = $(call unprofile,$(CFLAGS))

arch/um/sys-x86_64/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@ ldt-y = ../sys-i386/ldt.o
1818

1919
USER_OBJS := ptrace_user.o sigcontext.o stub_segv.o
2020

21-
include arch/um/scripts/Makefile.rules
21+
USER_OBJS += user-offsets.s
22+
extra-y += user-offsets.s
2223

2324
extra-$(CONFIG_MODE_TT) += unmap.o
2425

26+
include arch/um/scripts/Makefile.rules
27+
2528
$(obj)/stub_segv.o $(obj)/unmap.o: \
2629
_c_flags = $(call unprofile,$(CFLAGS))

0 commit comments

Comments
 (0)