]> git.ipfire.org Git - people/ms/linux.git/blame - arch/um/Makefile
Merge tag 'net-6.0-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
[people/ms/linux.git] / arch / um / Makefile
CommitLineData
4f193362
PS
1#
2# This file is included by the global makefile so that you can add your own
3# architecture-specific flags and dependencies.
4#
4c9e1385 5# Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
1da177e4
LT
6# Licensed under the GPL
7#
8
e40f04d0
RR
9# select defconfig based on actual architecture
10ifeq ($(SUBARCH),x86)
11 ifeq ($(shell uname -m),x86_64)
12 KBUILD_DEFCONFIG := x86_64_defconfig
13 else
14 KBUILD_DEFCONFIG := i386_defconfig
15 endif
16else
17 KBUILD_DEFCONFIG := $(SUBARCH)_defconfig
18endif
19
1da177e4
LT
20ARCH_DIR := arch/um
21OS := $(shell uname -s)
22# We require bash because the vmlinux link and loader script cpp use bash
23# features.
24SHELL := /bin/bash
25
1da177e4
LT
26core-y += $(ARCH_DIR)/kernel/ \
27 $(ARCH_DIR)/drivers/ \
28 $(ARCH_DIR)/os-$(OS)/
29
8569c914 30MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared/skas
1da177e4 31
7bbe7204
AV
32HEADER_ARCH := $(SUBARCH)
33
fff6540c
RW
34ifneq ($(filter $(SUBARCH),x86 x86_64 i386),)
35 HEADER_ARCH := x86
7bbe7204 36endif
fff6540c
RW
37
38ifdef CONFIG_64BIT
12783aa0 39 KBUILD_CFLAGS += -mcmodel=large
7bbe7204
AV
40endif
41
5c48b108
AV
42HOST_DIR := arch/$(HEADER_ARCH)
43
d8285639
MY
44include $(srctree)/$(ARCH_DIR)/Makefile-skas
45include $(srctree)/$(HOST_DIR)/Makefile.um
5c48b108
AV
46
47core-y += $(HOST_DIR)/um/
1da177e4 48
22409f9c
AV
49SHARED_HEADERS := $(ARCH_DIR)/include/shared
50ARCH_INCLUDE := -I$(srctree)/$(SHARED_HEADERS)
5c48b108
AV
51ARCH_INCLUDE += -I$(srctree)/$(HOST_DIR)/um/shared
52KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/um
1da177e4 53
98105d47
PBG
54# -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so
55# named - it's a common symbol in libpcap, so we get a binary which crashes.
fd748104 56#
98105d47
PBG
57# Same things for in6addr_loopback and mktime - found in libc. For these two we
58# only get link-time error, luckily.
59#
f44f1e7d
FF
60# -Dlongjmp=kernel_longjmp prevents anything from referencing the libpthread.a
61# embedded copy of longjmp, same thing for setjmp.
62#
98105d47 63# These apply to USER_CFLAGS to.
1da177e4 64
dc5be20a 65KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ \
98105d47 66 $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \
f44f1e7d 67 -Dlongjmp=kernel_longjmp -Dsetjmp=kernel_setjmp \
818f6ef4 68 -Din6addr_loopback=kernel_in6addr_loopback \
2c51a4bc 69 -Din6addr_any=kernel_in6addr_any -Dstrrchr=kernel_strrchr
fd748104 70
222d394d 71KBUILD_AFLAGS += $(ARCH_INCLUDE)
1da177e4 72
298e20ba
RW
73USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -I%,,$(KBUILD_CFLAGS))) \
74 $(ARCH_INCLUDE) $(MODE_INCLUDE) $(filter -I%,$(CFLAGS)) \
0b5aedfe 75 -D_FILE_OFFSET_BITS=64 -idirafter $(srctree)/include \
75dd4747 76 -idirafter $(objtree)/include -D__KERNEL__ -D__UM_HOST__
d45e44d4 77
d45e44d4 78#This will adjust *FLAGS accordingly to the platform.
d8285639 79include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
ecc354a9 80
c9b284b2 81KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/include \
abbf1590 82 -I$(srctree)/$(HOST_DIR)/include/uapi \
58ab5e0c
AB
83 -I$(objtree)/$(HOST_DIR)/include/generated \
84 -I$(objtree)/$(HOST_DIR)/include/generated/uapi
1de1502c 85
ecc354a9
PBG
86# -Derrno=kernel_errno - This turns all kernel references to errno into
87# kernel_errno to separate them from the libc errno. This allows -fno-common
a0f97e06 88# in KBUILD_CFLAGS. Otherwise, it would cause ld to complain about the two different
ecc354a9 89# errnos.
98105d47 90# These apply to kernelspace only.
f15cf515
JD
91#
92# strip leading and trailing whitespace to make the USER_CFLAGS removal of these
93# defines more robust
ecc354a9 94
f15cf515
JD
95KERNEL_DEFINES = $(strip -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
96 -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES))
a0f97e06 97KBUILD_CFLAGS += $(KERNEL_DEFINES)
1da177e4 98
4f193362 99PHONY += linux
1da177e4
LT
100
101all: linux
102
103linux: vmlinux
a4b741e3 104 @echo ' LINK $@'
cb8aa3d2 105 $(Q)ln -f $< $@
1da177e4
LT
106
107define archhelp
108 echo '* linux - Binary kernel image (./linux) - for backward'
109 echo ' compatibility only, this creates a hard link to the'
4b3f686d 110 echo ' real kernel binary, the "vmlinux" binary you'
1da177e4
LT
111 echo ' find in the kernel root.'
112endef
113
c9b284b2 114archheaders:
0004438a 115 $(Q)$(MAKE) -f $(srctree)/Makefile ARCH=$(HEADER_ARCH) asm-generic archheaders
699d7a57 116
65bba042
MY
117archprepare:
118 $(Q)$(MAKE) $(build)=$(HOST_DIR)/um include/generated/user_constants.h
1da177e4
LT
119
120LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
386093c6
JB
121LINK-$(CONFIG_LD_SCRIPT_DYN) += $(call cc-option, -no-pie)
122LINK-$(CONFIG_LD_SCRIPT_DYN_RPATH) += -Wl,-rpath,/lib
1da177e4 123
275e6e1e 124CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
893ab004 125 -fno-stack-protector $(call cc-option, -fno-stack-protector-all)
275e6e1e 126
51b563fc
SR
127# Options used by linker script
128export LDS_START := $(START)
129export LDS_ELF_ARCH := $(ELF_ARCH)
130export LDS_ELF_FORMAT := $(ELF_FORMAT)
1da177e4 131
4c9e1385 132# The wrappers will select whether using "malloc" or the kernel allocator.
1da177e4
LT
133LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
134
bd71558d
DG
135# Avoid binutils 2.39+ warnings by marking the stack non-executable and
136# ignorning warnings for the kallsyms sections.
137LDFLAGS_EXECSTACK = -z noexecstack
138ifeq ($(CONFIG_LD_IS_BFD),y)
139LDFLAGS_EXECSTACK += $(call ld-option,--no-warn-rwx-segments)
140endif
141
d503ac53 142LD_FLAGS_CMDLINE = $(foreach opt,$(KBUILD_LDFLAGS),-Wl,$(opt))
0ba7fe03 143
1f2bfbd0
SR
144# Used by link-vmlinux.sh which has special support for um link
145export CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE)
bd71558d 146export LDFLAGS_vmlinux := $(LDFLAGS_EXECSTACK)
1da177e4 147
4c9e1385
JD
148# When cleaning we don't include .config, so we don't include
149# TT or skas makefiles and don't clean skas_ptregs.h.
9e636452 150CLEAN_FILES += linux x.i gmon.out
0663c68c 151MRPROPER_FILES += arch/$(SUBARCH)/include/generated
1da177e4 152
1da177e4 153archclean:
1da177e4
LT
154 @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
155 -o -name '*.gcov' \) -type f -print | xargs rm -f
156
79b05c1f 157export HEADER_ARCH SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS DEV_NULL_PATH