blob: 2e042b0e3b8a5b8fc7ef89c353675f076f691d48 [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
9ARCH_DIR := arch/um
10OS := $(shell uname -s)
11# We require bash because the vmlinux link and loader script cpp use bash
12# features.
13SHELL := /bin/bash
14
15filechk_gen_header = $<
16
17core-y += $(ARCH_DIR)/kernel/ \
18 $(ARCH_DIR)/drivers/ \
19 $(ARCH_DIR)/os-$(OS)/
20
21# Have to precede the include because the included Makefiles reference them.
Al Viro2985cfd2008-08-18 10:20:37 -040022SYMLINK_HEADERS := archparam.h processor.h ptrace.h module.h elf.h
Al Viro8ede0bd2008-08-17 19:13:17 -040023SYMLINK_HEADERS := $(foreach header,$(SYMLINK_HEADERS),$(ARCH_DIR)/include/asm/$(header))
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25# XXX: The "os" symlink is only used by arch/um/include/os.h, which includes
26# ../os/include/file.h
27#
28# These are cleaned up during mrproper. Please DO NOT fix it again, this is
29# the Correct Thing(tm) to do!
Al Virof5ad6a42008-08-18 21:44:32 -040030ARCH_SYMLINKS = $(ARCH_DIR)/os \
Al Viro8569c912008-08-17 13:48:37 -040031 $(SYMLINK_HEADERS) $(ARCH_DIR)/include/shared/uml-config.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Al Viro8569c912008-08-17 13:48:37 -040033MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared/skas
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Jeff Dike42fda662007-10-16 01:26:50 -070035include $(srctree)/$(ARCH_DIR)/Makefile-skas
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Al Viro8569c912008-08-17 13:48:37 -040037ARCH_INCLUDE := -I$(ARCH_DIR)/include/shared
Al Virofd7aab92005-05-05 16:15:29 -070038ifneq ($(KBUILD_SRC),)
Al Viro8569c912008-08-17 13:48:37 -040039ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared
Al Viro6b0eed42008-08-18 04:54:36 -040040KBUILD_CPPFLAGS += -I$(ARCH_DIR)/include # for SYMLINK_HEADERS
Al Virofd7aab92005-05-05 16:15:29 -070041endif
Al Virof5ad6a42008-08-18 21:44:32 -040042ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH) # for sysdep
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080044# -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so
45# named - it's a common symbol in libpcap, so we get a binary which crashes.
Paolo 'Blaisorblade' Giarrussofd748102005-09-21 18:39:32 +020046#
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080047# Same things for in6addr_loopback and mktime - found in libc. For these two we
48# only get link-time error, luckily.
49#
50# These apply to USER_CFLAGS to.
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070051
Jeff Dike260c0cb2008-02-04 22:31:02 -080052KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080053 $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \
Jeff Dike818f6ef2007-10-16 01:26:45 -070054 -Din6addr_loopback=kernel_in6addr_loopback \
55 -Din6addr_any=kernel_in6addr_any
Paolo 'Blaisorblade' Giarrussofd748102005-09-21 18:39:32 +020056
Sam Ravnborg222d3942007-10-15 21:59:31 +020057KBUILD_AFLAGS += $(ARCH_INCLUDE)
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070058
akpm@osdl.orgd45e44d2006-10-29 22:46:42 -080059USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\
Sam Ravnborga0f97e02007-10-14 22:21:35 +020060 $(patsubst -I%,,$(KBUILD_CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \
Jeff Dike260c0cb2008-02-04 22:31:02 -080061 $(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64
akpm@osdl.orgd45e44d2006-10-29 22:46:42 -080062
63include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH)
64
65#This will adjust *FLAGS accordingly to the platform.
66include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070067
Al Viro1de15022008-08-17 22:54:55 -040068KBUILD_CPPFLAGS += -I$(srctree)/arch/$(HEADER_ARCH)/include
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070# -Derrno=kernel_errno - This turns all kernel references to errno into
71# kernel_errno to separate them from the libc errno. This allows -fno-common
Sam Ravnborga0f97e02007-10-14 22:21:35 +020072# in KBUILD_CFLAGS. Otherwise, it would cause ld to complain about the two different
Linus Torvalds1da177e2005-04-16 15:20:36 -070073# errnos.
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080074# These apply to kernelspace only.
Jeff Dikef15cf512007-11-05 14:50:59 -080075#
76# strip leading and trailing whitespace to make the USER_CFLAGS removal of these
77# defines more robust
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Jeff Dikef15cf512007-11-05 14:50:59 -080079KERNEL_DEFINES = $(strip -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
80 -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES))
Sam Ravnborga0f97e02007-10-14 22:21:35 +020081KBUILD_CFLAGS += $(KERNEL_DEFINES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Paul Smith4f193362006-03-05 17:14:10 -050083PHONY += linux
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85all: linux
86
87linux: vmlinux
Jeff Dikea4b741e2006-05-01 12:16:06 -070088 @echo ' LINK $@'
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -070089 $(Q)ln -f $< $@
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91define archhelp
92 echo '* linux - Binary kernel image (./linux) - for backward'
93 echo ' compatibility only, this creates a hard link to the'
Matt LaPlante4b3f6862006-10-03 22:21:02 +020094 echo ' real kernel binary, the "vmlinux" binary you'
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 echo ' find in the kernel root.'
96endef
97
Al Virofd7aab92005-05-05 16:15:29 -070098ifneq ($(KBUILD_SRC),)
Jeff Dike08b178e2005-09-03 15:57:12 -070099$(shell mkdir -p $(ARCH_DIR) && ln -fsn $(srctree)/$(ARCH_DIR)/Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
Al Virofd7aab92005-05-05 16:15:29 -0700100else
Al Viro8569c912008-08-17 13:48:37 -0400101$(shell ln -fsn Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
Al Virofd7aab92005-05-05 16:15:29 -0700102endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Al Viro8569c912008-08-17 13:48:37 -0400104archprepare: $(ARCH_SYMLINKS) $(ARCH_DIR)/include/shared/user_constants.h
105prepare: $(ARCH_DIR)/include/shared/kern_constants.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
108LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
109
Paolo 'Blaisorblade' Giarrusso275e6e12006-05-01 12:16:04 -0700110CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
111 $(call cc-option, -fno-stack-protector,) \
112 $(call cc-option, -fno-stack-protector-all,)
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114CONFIG_KERNEL_STACK_ORDER ?= 2
115STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
116
Jeff Dike42fda662007-10-16 01:26:50 -0700117CPPFLAGS_vmlinux.lds = -U$(SUBARCH) -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \
118 -DELF_FORMAT="$(ELF_FORMAT)" -DKERNEL_STACK_SIZE=$(STACK_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Jeff Dike4c9e1382007-10-16 01:26:54 -0700120# The wrappers will select whether using "malloc" or the kernel allocator.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
122
Jeff Dike260c0cb2008-02-04 22:31:02 -0800123LD_FLAGS_CMDLINE = $(foreach opt,$(LDFLAGS),-Wl,$(opt))
Jeff Dike0ba7fe02008-02-04 22:30:45 -0800124
125CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126define cmd_vmlinux__
127 $(CC) $(CFLAGS_vmlinux) -o $@ \
128 -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \
129 -Wl,--start-group $(vmlinux-main) -Wl,--end-group \
Paolo 'Blaisorblade' Giarrusso776cfeb2005-05-05 16:15:18 -0700130 -lutil \
Al Viro75473c12007-07-20 02:01:16 +0100131 $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 FORCE ,$^) ; rm -f linux
133endef
134
Jeff Dike4c9e1382007-10-16 01:26:54 -0700135# When cleaning we don't include .config, so we don't include
136# TT or skas makefiles and don't clean skas_ptregs.h.
Al Viro8569c912008-08-17 13:48:37 -0400137CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/include/shared/uml-config.h \
138 $(ARCH_DIR)/include/shared/user_constants.h \
139 $(ARCH_DIR)/include/shared/kern_constants.h $(ARCH_DIR)/Kconfig.arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Al Virocc70a402006-03-31 02:30:13 -0800141MRPROPER_FILES += $(ARCH_SYMLINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
143archclean:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
145 -o -name '*.gcov' \) -type f -print | xargs rm -f
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147$(SYMLINK_HEADERS):
148 @echo ' SYMLINK $@'
Al Virofd7aab92005-05-05 16:15:29 -0700149ifneq ($(KBUILD_SRC),)
Al Viro8ede0bd2008-08-17 19:13:17 -0400150 $(Q)mkdir -p $(objtree)/$(ARCH_DIR)/include/asm
151 $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/asm/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
Al Virofd7aab92005-05-05 16:15:29 -0700152else
Al Viro8569c912008-08-17 13:48:37 -0400153 $(Q)ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
Al Virofd7aab92005-05-05 16:15:29 -0700154endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Al Viro8569c912008-08-17 13:48:37 -0400156$(objtree)/$(ARCH_DIR)/include/shared:
Jeff Dikec6b7a1e2006-02-01 03:06:22 -0800157 @echo ' MKDIR $@'
158 $(Q)mkdir -p $@
159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160$(ARCH_DIR)/os:
161 @echo ' SYMLINK $@'
Al Virofd7aab92005-05-05 16:15:29 -0700162ifneq ($(KBUILD_SRC),)
Al Viro8569c912008-08-17 13:48:37 -0400163 $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/os-$(OS) $@
Al Virofd7aab92005-05-05 16:15:29 -0700164else
Al Viro8569c912008-08-17 13:48:37 -0400165 $(Q)ln -fsn os-$(OS) $@
Al Virofd7aab92005-05-05 16:15:29 -0700166endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168# Generated files
169define filechk_umlconfig
170 sed 's/ CONFIG/ UML_CONFIG/'
171endef
172
Al Viro8569c912008-08-17 13:48:37 -0400173$(ARCH_DIR)/include/shared/uml-config.h : include/linux/autoconf.h
Jeff Dike4ee189a2006-01-11 12:17:23 -0800174 $(call filechk,umlconfig)
175
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -0700176$(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s: FORCE
177 $(Q)$(MAKE) $(build)=$(ARCH_DIR)/sys-$(SUBARCH) $@
Jeff Dike4ee189a2006-01-11 12:17:23 -0800178
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200179define filechk_gen-asm-offsets
180 (set -e; \
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200181 echo "/*"; \
182 echo " * DO NOT MODIFY."; \
183 echo " *"; \
184 echo " * This file was generated by arch/$(ARCH)/Makefile"; \
185 echo " *"; \
186 echo " */"; \
187 echo ""; \
188 sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
Al Viroecba97d2005-09-28 22:27:23 +0100189 echo ""; )
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200190endef
191
Al Viro8569c912008-08-17 13:48:37 -0400192$(ARCH_DIR)/include/shared/user_constants.h: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s
Al Viro8d0b9dc2005-05-05 16:15:23 -0700193 $(call filechk,gen-asm-offsets)
194
Al Viro8569c912008-08-17 13:48:37 -0400195$(ARCH_DIR)/include/shared/kern_constants.h: $(objtree)/$(ARCH_DIR)/include/shared
Jeff Dike4ee189a2006-01-11 12:17:23 -0800196 @echo ' SYMLINK $@'
Al Viro8ede0bd2008-08-17 19:13:17 -0400197 $(Q)ln -sf ../../../../include/asm/asm-offsets.h $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Al Viro2b8232c2007-10-13 08:16:04 +0100199export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS HEADER_ARCH