blob: d2daa206872da406408a2685f6659c312b9aa18b [file] [log] [blame]
Paul Smith4f193362006-03-05 17:14:10 -05001#
2# This file is included by the global makefile so that you can add your own
3# architecture-specific flags and dependencies.
4#
Jeff Dike4c9e1382007-10-16 01:26:54 -07005# Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006# Licensed under the GPL
7#
8
Ramkumar Ramachandrae40f04d2013-09-27 09:44:46 +05309# 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070020ARCH_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
Linus Torvalds1da177e2005-04-16 15:20:36 -070026core-y += $(ARCH_DIR)/kernel/ \
27 $(ARCH_DIR)/drivers/ \
28 $(ARCH_DIR)/os-$(OS)/
29
Al Viro8569c912008-08-17 13:48:37 -040030MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared/skas
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Al Viro7bbe7202011-08-18 20:06:29 +010032HEADER_ARCH := $(SUBARCH)
33
Richard Weinbergerfff65402013-11-29 15:39:41 +010034ifneq ($(filter $(SUBARCH),x86 x86_64 i386),)
35 HEADER_ARCH := x86
Al Viro7bbe7202011-08-18 20:06:29 +010036endif
Richard Weinbergerfff65402013-11-29 15:39:41 +010037
38ifdef CONFIG_64BIT
Richard Weinberger12783aa2012-01-24 20:09:12 +010039 KBUILD_CFLAGS += -mcmodel=large
Al Viro7bbe7202011-08-18 20:06:29 +010040endif
41
Al Viro5c48b102011-08-18 20:06:39 +010042HOST_DIR := arch/$(HEADER_ARCH)
43
Masahiro Yamadaa436bb72015-03-27 20:43:36 +090044include $(ARCH_DIR)/Makefile-skas
45include $(HOST_DIR)/Makefile.um
Al Viro5c48b102011-08-18 20:06:39 +010046
47core-y += $(HOST_DIR)/um/
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Al Viro22409f92009-01-05 17:18:42 +000049SHARED_HEADERS := $(ARCH_DIR)/include/shared
50ARCH_INCLUDE := -I$(srctree)/$(SHARED_HEADERS)
Al Viro5c48b102011-08-18 20:06:39 +010051ARCH_INCLUDE += -I$(srctree)/$(HOST_DIR)/um/shared
52KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/um
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080054# -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.
Paolo 'Blaisorblade' Giarrussofd748102005-09-21 18:39:32 +020056#
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080057# Same things for in6addr_loopback and mktime - found in libc. For these two we
58# only get link-time error, luckily.
59#
Florian Fainellif44f1e72017-05-23 17:32:31 -070060# -Dlongjmp=kernel_longjmp prevents anything from referencing the libpthread.a
61# embedded copy of longjmp, same thing for setjmp.
62#
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080063# These apply to USER_CFLAGS to.
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070064
Al Virodc5be202012-02-11 05:39:56 -050065KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ \
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080066 $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \
Florian Fainellif44f1e72017-05-23 17:32:31 -070067 -Dlongjmp=kernel_longjmp -Dsetjmp=kernel_setjmp \
Jeff Dike818f6ef2007-10-16 01:26:45 -070068 -Din6addr_loopback=kernel_in6addr_loopback \
Al Viro2c51a4b2011-09-14 16:21:38 -070069 -Din6addr_any=kernel_in6addr_any -Dstrrchr=kernel_strrchr
Paolo 'Blaisorblade' Giarrussofd748102005-09-21 18:39:32 +020070
Sam Ravnborg222d3942007-10-15 21:59:31 +020071KBUILD_AFLAGS += $(ARCH_INCLUDE)
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070072
Richard Weinberger298e20b2015-05-31 19:50:57 +020073USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -I%,,$(KBUILD_CFLAGS))) \
74 $(ARCH_INCLUDE) $(MODE_INCLUDE) $(filter -I%,$(CFLAGS)) \
Richard Weinberger0b5aedf2015-06-28 22:55:26 +020075 -D_FILE_OFFSET_BITS=64 -idirafter $(srctree)/include \
Masahiro Yamada75dd4742019-07-06 12:07:11 +090076 -idirafter $(objtree)/include -D__KERNEL__ -D__UM_HOST__
akpm@osdl.orgd45e44d2006-10-29 22:46:42 -080077
akpm@osdl.orgd45e44d2006-10-29 22:46:42 -080078#This will adjust *FLAGS accordingly to the platform.
Masahiro Yamadaa436bb72015-03-27 20:43:36 +090079include $(ARCH_DIR)/Makefile-os-$(OS)
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070080
H. Peter Anvinc9b284b2011-12-05 16:03:30 -080081KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/include \
David Howellsabbf1592012-10-02 18:01:26 +010082 -I$(srctree)/$(HOST_DIR)/include/uapi \
Arnd Bergmann58ab5e02016-06-15 17:45:46 +020083 -I$(objtree)/$(HOST_DIR)/include/generated \
84 -I$(objtree)/$(HOST_DIR)/include/generated/uapi
Al Viro1de15022008-08-17 22:54:55 -040085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086# -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
Sam Ravnborga0f97e02007-10-14 22:21:35 +020088# in KBUILD_CFLAGS. Otherwise, it would cause ld to complain about the two different
Linus Torvalds1da177e2005-04-16 15:20:36 -070089# errnos.
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080090# These apply to kernelspace only.
Jeff Dikef15cf512007-11-05 14:50:59 -080091#
92# strip leading and trailing whitespace to make the USER_CFLAGS removal of these
93# defines more robust
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Jeff Dikef15cf512007-11-05 14:50:59 -080095KERNEL_DEFINES = $(strip -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
96 -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES))
Sam Ravnborga0f97e02007-10-14 22:21:35 +020097KBUILD_CFLAGS += $(KERNEL_DEFINES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Paul Smith4f193362006-03-05 17:14:10 -050099PHONY += linux
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101all: linux
102
103linux: vmlinux
Jeff Dikea4b741e2006-05-01 12:16:06 -0700104 @echo ' LINK $@'
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -0700105 $(Q)ln -f $< $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107define archhelp
108 echo '* linux - Binary kernel image (./linux) - for backward'
109 echo ' compatibility only, this creates a hard link to the'
Matt LaPlante4b3f6862006-10-03 22:21:02 +0200110 echo ' real kernel binary, the "vmlinux" binary you'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 echo ' find in the kernel root.'
112endef
113
H. Peter Anvinc9b284b2011-12-05 16:03:30 -0800114archheaders:
Masahiro Yamada00044382018-08-04 13:47:03 +0900115 $(Q)$(MAKE) -f $(srctree)/Makefile ARCH=$(HEADER_ARCH) asm-generic archheaders
Al Viro699d7a52017-09-04 02:37:17 -0400116
Masahiro Yamada65bba042018-11-29 11:58:50 +0900117archprepare:
118 $(Q)$(MAKE) $(build)=$(HOST_DIR)/um include/generated/user_constants.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
Thomas Meyer883354a2017-08-20 13:26:04 +0200121LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib $(call cc-option, -no-pie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Paolo 'Blaisorblade' Giarrusso275e6e12006-05-01 12:16:04 -0700123CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
124 $(call cc-option, -fno-stack-protector,) \
125 $(call cc-option, -fno-stack-protector-all,)
126
Sam Ravnborg51b563f2009-09-20 12:28:22 +0200127# Options used by linker script
128export LDS_START := $(START)
129export LDS_ELF_ARCH := $(ELF_ARCH)
130export LDS_ELF_FORMAT := $(ELF_FORMAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Jeff Dike4c9e1382007-10-16 01:26:54 -0700132# The wrappers will select whether using "malloc" or the kernel allocator.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
134
Masahiro Yamadad503ac52018-08-24 08:20:39 +0900135LD_FLAGS_CMDLINE = $(foreach opt,$(KBUILD_LDFLAGS),-Wl,$(opt))
Jeff Dike0ba7fe02008-02-04 22:30:45 -0800136
Sam Ravnborg1f2bfbd2012-05-05 10:18:41 +0200137# Used by link-vmlinux.sh which has special support for um link
138export CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Jeff Dike4c9e1382007-10-16 01:26:54 -0700140# When cleaning we don't include .config, so we don't include
141# TT or skas makefiles and don't clean skas_ptregs.h.
Al Viro9e636452011-08-18 20:01:49 +0100142CLEAN_FILES += linux x.i gmon.out
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144archclean:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
146 -o -name '*.gcov' \) -type f -print | xargs rm -f
147
Christoph Hellwig79b05c12018-07-31 13:39:26 +0200148export HEADER_ARCH SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS DEV_NULL_PATH