blob: e4b1a9639c4ddfab7db3d91a080272b9c00fdba8 [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
26filechk_gen_header = $<
27
28core-y += $(ARCH_DIR)/kernel/ \
29 $(ARCH_DIR)/drivers/ \
30 $(ARCH_DIR)/os-$(OS)/
31
Al Viro8569c912008-08-17 13:48:37 -040032MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared/skas
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Al Viro7bbe7202011-08-18 20:06:29 +010034HEADER_ARCH := $(SUBARCH)
35
Richard Weinbergerfff65402013-11-29 15:39:41 +010036ifneq ($(filter $(SUBARCH),x86 x86_64 i386),)
37 HEADER_ARCH := x86
Al Viro7bbe7202011-08-18 20:06:29 +010038endif
Richard Weinbergerfff65402013-11-29 15:39:41 +010039
40ifdef CONFIG_64BIT
Richard Weinberger12783aa2012-01-24 20:09:12 +010041 KBUILD_CFLAGS += -mcmodel=large
Al Viro7bbe7202011-08-18 20:06:29 +010042endif
43
Al Viro5c48b102011-08-18 20:06:39 +010044HOST_DIR := arch/$(HEADER_ARCH)
45
Jeff Dike42fda662007-10-16 01:26:50 -070046include $(srctree)/$(ARCH_DIR)/Makefile-skas
Al Viro5c48b102011-08-18 20:06:39 +010047include $(srctree)/$(HOST_DIR)/Makefile.um
48
49core-y += $(HOST_DIR)/um/
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Al Viro22409f92009-01-05 17:18:42 +000051SHARED_HEADERS := $(ARCH_DIR)/include/shared
52ARCH_INCLUDE := -I$(srctree)/$(SHARED_HEADERS)
Al Viro5c48b102011-08-18 20:06:39 +010053ARCH_INCLUDE += -I$(srctree)/$(HOST_DIR)/um/shared
54KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/um
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080056# -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so
57# named - it's a common symbol in libpcap, so we get a binary which crashes.
Paolo 'Blaisorblade' Giarrussofd748102005-09-21 18:39:32 +020058#
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080059# Same things for in6addr_loopback and mktime - found in libc. For these two we
60# only get link-time error, luckily.
61#
62# These apply to USER_CFLAGS to.
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070063
Al Virodc5be202012-02-11 05:39:56 -050064KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ \
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080065 $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \
Jeff Dike818f6ef2007-10-16 01:26:45 -070066 -Din6addr_loopback=kernel_in6addr_loopback \
Al Viro2c51a4b2011-09-14 16:21:38 -070067 -Din6addr_any=kernel_in6addr_any -Dstrrchr=kernel_strrchr
Paolo 'Blaisorblade' Giarrussofd748102005-09-21 18:39:32 +020068
Sam Ravnborg222d3942007-10-15 21:59:31 +020069KBUILD_AFLAGS += $(ARCH_INCLUDE)
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070070
akpm@osdl.orgd45e44d2006-10-29 22:46:42 -080071USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\
Sam Ravnborga0f97e02007-10-14 22:21:35 +020072 $(patsubst -I%,,$(KBUILD_CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \
Al Viro4d45db92011-08-18 20:00:59 +010073 $(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64 -idirafter include
akpm@osdl.orgd45e44d2006-10-29 22:46:42 -080074
akpm@osdl.orgd45e44d2006-10-29 22:46:42 -080075#This will adjust *FLAGS accordingly to the platform.
76include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070077
H. Peter Anvinc9b284b2011-12-05 16:03:30 -080078KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/include \
David Howellsabbf1592012-10-02 18:01:26 +010079 -I$(srctree)/$(HOST_DIR)/include/uapi \
80 -I$(HOST_DIR)/include/generated \
81 -I$(HOST_DIR)/include/generated/uapi
Al Viro1de15022008-08-17 22:54:55 -040082
Linus Torvalds1da177e2005-04-16 15:20:36 -070083# -Derrno=kernel_errno - This turns all kernel references to errno into
84# kernel_errno to separate them from the libc errno. This allows -fno-common
Sam Ravnborga0f97e02007-10-14 22:21:35 +020085# in KBUILD_CFLAGS. Otherwise, it would cause ld to complain about the two different
Linus Torvalds1da177e2005-04-16 15:20:36 -070086# errnos.
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080087# These apply to kernelspace only.
Jeff Dikef15cf512007-11-05 14:50:59 -080088#
89# strip leading and trailing whitespace to make the USER_CFLAGS removal of these
90# defines more robust
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Jeff Dikef15cf512007-11-05 14:50:59 -080092KERNEL_DEFINES = $(strip -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
93 -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES))
Sam Ravnborga0f97e02007-10-14 22:21:35 +020094KBUILD_CFLAGS += $(KERNEL_DEFINES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Paul Smith4f193362006-03-05 17:14:10 -050096PHONY += linux
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98all: linux
99
100linux: vmlinux
Jeff Dikea4b741e2006-05-01 12:16:06 -0700101 @echo ' LINK $@'
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -0700102 $(Q)ln -f $< $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104define archhelp
105 echo '* linux - Binary kernel image (./linux) - for backward'
106 echo ' compatibility only, this creates a hard link to the'
Matt LaPlante4b3f6862006-10-03 22:21:02 +0200107 echo ' real kernel binary, the "vmlinux" binary you'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 echo ' find in the kernel root.'
109endef
110
Al Viro5c48b102011-08-18 20:06:39 +0100111KBUILD_KCONFIG := $(HOST_DIR)/um/Kconfig
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
H. Peter Anvinc9b284b2011-12-05 16:03:30 -0800113archheaders:
Michal Marekd4bc5902014-06-05 17:44:44 +0200114 $(Q)$(MAKE) KBUILD_SRC= ARCH=$(HEADER_ARCH) archheaders
H. Peter Anvinc9b284b2011-12-05 16:03:30 -0800115
Al Viro4de1c5f2011-08-18 20:01:19 +0100116archprepare: include/generated/user_constants.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
119LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
120
Paolo 'Blaisorblade' Giarrusso275e6e12006-05-01 12:16:04 -0700121CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
122 $(call cc-option, -fno-stack-protector,) \
123 $(call cc-option, -fno-stack-protector-all,)
124
Sam Ravnborg51b563f2009-09-20 12:28:22 +0200125# Options used by linker script
126export LDS_START := $(START)
127export LDS_ELF_ARCH := $(ELF_ARCH)
128export LDS_ELF_FORMAT := $(ELF_FORMAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Jeff Dike4c9e1382007-10-16 01:26:54 -0700130# The wrappers will select whether using "malloc" or the kernel allocator.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
132
Jeff Dike260c0cb2008-02-04 22:31:02 -0800133LD_FLAGS_CMDLINE = $(foreach opt,$(LDFLAGS),-Wl,$(opt))
Jeff Dike0ba7fe02008-02-04 22:30:45 -0800134
Sam Ravnborg1f2bfbd2012-05-05 10:18:41 +0200135# Used by link-vmlinux.sh which has special support for um link
136export CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Jeff Dike4c9e1382007-10-16 01:26:54 -0700138# When cleaning we don't include .config, so we don't include
139# TT or skas makefiles and don't clean skas_ptregs.h.
Al Viro9e636452011-08-18 20:01:49 +0100140CLEAN_FILES += linux x.i gmon.out
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142archclean:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
144 -o -name '*.gcov' \) -type f -print | xargs rm -f
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146# Generated files
Jeff Dike4ee189a2006-01-11 12:17:23 -0800147
H. Peter Anvin392f4b72011-12-05 16:06:02 -0800148$(HOST_DIR)/um/user-offsets.s: __headers FORCE
Al Viro5c48b102011-08-18 20:06:39 +0100149 $(Q)$(MAKE) $(build)=$(HOST_DIR)/um $@
Jeff Dike4ee189a2006-01-11 12:17:23 -0800150
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200151define filechk_gen-asm-offsets
152 (set -e; \
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200153 echo "/*"; \
154 echo " * DO NOT MODIFY."; \
155 echo " *"; \
156 echo " * This file was generated by arch/$(ARCH)/Makefile"; \
157 echo " *"; \
158 echo " */"; \
159 echo ""; \
160 sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
Al Viroecba97d2005-09-28 22:27:23 +0100161 echo ""; )
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200162endef
163
Al Viro5c48b102011-08-18 20:06:39 +0100164include/generated/user_constants.h: $(HOST_DIR)/um/user-offsets.s
Al Viro8d0b9dc2005-05-05 16:15:23 -0700165 $(call filechk,gen-asm-offsets)
166
Al Viro5c48b102011-08-18 20:06:39 +0100167export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS DEV_NULL_PATH