blob: dbeab15e7bb7c160db7dda887a4c9d14982f742c [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.
22SYMLINK_HEADERS := archparam.h system.h sigcontext.h processor.h ptrace.h \
Paolo 'Blaisorblade' Giarrussofbdf2162006-03-31 02:30:19 -080023 module.h vm-flags.h elf.h host_ldt.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070024SYMLINK_HEADERS := $(foreach header,$(SYMLINK_HEADERS),include/asm-um/$(header))
25
26# XXX: The "os" symlink is only used by arch/um/include/os.h, which includes
27# ../os/include/file.h
28#
29# These are cleaned up during mrproper. Please DO NOT fix it again, this is
30# the Correct Thing(tm) to do!
31ARCH_SYMLINKS = include/asm-um/arch $(ARCH_DIR)/include/sysdep $(ARCH_DIR)/os \
32 $(SYMLINK_HEADERS) $(ARCH_DIR)/include/uml-config.h
33
Jeff Dike42fda662007-10-16 01:26:50 -070034MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/skas
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Jeff Dike42fda662007-10-16 01:26:50 -070036include $(srctree)/$(ARCH_DIR)/Makefile-skas
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38ARCH_INCLUDE := -I$(ARCH_DIR)/include
Al Virofd7aab92005-05-05 16:15:29 -070039ifneq ($(KBUILD_SRC),)
Al Virofd7aab92005-05-05 16:15:29 -070040ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include
Al Virofd7aab92005-05-05 16:15:29 -070041endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070042SYS_DIR := $(ARCH_DIR)/include/sysdep-$(SUBARCH)
43
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
Linus Torvalds1da177e2005-04-16 15:20:36 -070068# -Derrno=kernel_errno - This turns all kernel references to errno into
69# kernel_errno to separate them from the libc errno. This allows -fno-common
Sam Ravnborga0f97e02007-10-14 22:21:35 +020070# in KBUILD_CFLAGS. Otherwise, it would cause ld to complain about the two different
Linus Torvalds1da177e2005-04-16 15:20:36 -070071# errnos.
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080072# These apply to kernelspace only.
Jeff Dikef15cf512007-11-05 14:50:59 -080073#
74# strip leading and trailing whitespace to make the USER_CFLAGS removal of these
75# defines more robust
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Jeff Dikef15cf512007-11-05 14:50:59 -080077KERNEL_DEFINES = $(strip -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
78 -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES))
Sam Ravnborga0f97e02007-10-14 22:21:35 +020079KBUILD_CFLAGS += $(KERNEL_DEFINES)
80KBUILD_CFLAGS += $(call cc-option,-fno-unit-at-a-time,)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Paul Smith4f193362006-03-05 17:14:10 -050082PHONY += linux
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84all: linux
85
86linux: vmlinux
Jeff Dikea4b741e2006-05-01 12:16:06 -070087 @echo ' LINK $@'
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -070088 $(Q)ln -f $< $@
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90define archhelp
91 echo '* linux - Binary kernel image (./linux) - for backward'
92 echo ' compatibility only, this creates a hard link to the'
Matt LaPlante4b3f6862006-10-03 22:21:02 +020093 echo ' real kernel binary, the "vmlinux" binary you'
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 echo ' find in the kernel root.'
95endef
96
Al Virofd7aab92005-05-05 16:15:29 -070097ifneq ($(KBUILD_SRC),)
Jeff Dike08b178e2005-09-03 15:57:12 -070098$(shell mkdir -p $(ARCH_DIR) && ln -fsn $(srctree)/$(ARCH_DIR)/Kconfig.$(SUBARCH) $(ARCH_DIR)/Kconfig.arch)
Al Virofd7aab92005-05-05 16:15:29 -070099else
Jeff Dike08b178e2005-09-03 15:57:12 -0700100$(shell cd $(ARCH_DIR) && ln -sf Kconfig.$(SUBARCH) Kconfig.arch)
Al Virofd7aab92005-05-05 16:15:29 -0700101endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Al Viroecba97d2005-09-28 22:27:23 +0100103archprepare: $(ARCH_SYMLINKS) $(ARCH_DIR)/include/user_constants.h
104prepare: $(ARCH_DIR)/include/kern_constants.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
107LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
108
Paolo 'Blaisorblade' Giarrusso275e6e12006-05-01 12:16:04 -0700109CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
110 $(call cc-option, -fno-stack-protector,) \
111 $(call cc-option, -fno-stack-protector-all,)
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113CONFIG_KERNEL_STACK_ORDER ?= 2
114STACK_SIZE := $(shell echo $$[ 4096 * (1 << $(CONFIG_KERNEL_STACK_ORDER)) ] )
115
Jeff Dike42fda662007-10-16 01:26:50 -0700116CPPFLAGS_vmlinux.lds = -U$(SUBARCH) -DSTART=$(START) -DELF_ARCH=$(ELF_ARCH) \
117 -DELF_FORMAT="$(ELF_FORMAT)" -DKERNEL_STACK_SIZE=$(STACK_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Jeff Dike4c9e1382007-10-16 01:26:54 -0700119# The wrappers will select whether using "malloc" or the kernel allocator.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
121
Jeff Dike260c0cb2008-02-04 22:31:02 -0800122LD_FLAGS_CMDLINE = $(foreach opt,$(LDFLAGS),-Wl,$(opt))
Jeff Dike0ba7fe02008-02-04 22:30:45 -0800123
124CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125define cmd_vmlinux__
126 $(CC) $(CFLAGS_vmlinux) -o $@ \
127 -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \
128 -Wl,--start-group $(vmlinux-main) -Wl,--end-group \
Paolo 'Blaisorblade' Giarrusso776cfeb2005-05-05 16:15:18 -0700129 -lutil \
Al Viro75473c12007-07-20 02:01:16 +0100130 $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 FORCE ,$^) ; rm -f linux
132endef
133
Jeff Dike4c9e1382007-10-16 01:26:54 -0700134# When cleaning we don't include .config, so we don't include
135# TT or skas makefiles and don't clean skas_ptregs.h.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136CLEAN_FILES += linux x.i gmon.out $(ARCH_DIR)/include/uml-config.h \
Al Viroecba97d2005-09-28 22:27:23 +0100137 $(ARCH_DIR)/include/user_constants.h \
138 $(ARCH_DIR)/include/kern_constants.h $(ARCH_DIR)/Kconfig.arch
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Al Virocc70a402006-03-31 02:30:13 -0800140MRPROPER_FILES += $(ARCH_SYMLINKS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142archclean:
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$(SYMLINK_HEADERS):
147 @echo ' SYMLINK $@'
Al Virofd7aab92005-05-05 16:15:29 -0700148ifneq ($(KBUILD_SRC),)
Paolo 'Blaisorblade' Giarrusso40dbb862006-04-10 22:53:40 -0700149 $(Q)mkdir -p $(objtree)/include/asm-um
Paolo 'Blaisorblade' Giarrusso5cd10da2005-10-09 21:37:05 +0200150 $(Q)ln -fsn $(srctree)/include/asm-um/$(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $@
Al Virofd7aab92005-05-05 16:15:29 -0700151else
WANG Cong47afa1d2008-02-04 22:31:23 -0800152 $(Q)cd $(srctree)/$(dir $@) ; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 ln -sf $(basename $(notdir $@))-$(SUBARCH)$(suffix $@) $(notdir $@)
Al Virofd7aab92005-05-05 16:15:29 -0700154endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156include/asm-um/arch:
157 @echo ' SYMLINK $@'
Al Virofd7aab92005-05-05 16:15:29 -0700158ifneq ($(KBUILD_SRC),)
Paolo 'Blaisorblade' Giarrusso40dbb862006-04-10 22:53:40 -0700159 $(Q)mkdir -p $(objtree)/include/asm-um
Al Viro2b8232c2007-10-13 08:16:04 +0100160 $(Q)ln -fsn $(srctree)/include/asm-$(HEADER_ARCH) include/asm-um/arch
Al Virofd7aab92005-05-05 16:15:29 -0700161else
WANG Cong47afa1d2008-02-04 22:31:23 -0800162 $(Q)cd $(srctree)/include/asm-um && ln -fsn ../asm-$(HEADER_ARCH) arch
Al Virofd7aab92005-05-05 16:15:29 -0700163endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Jeff Dikec6b7a1e2006-02-01 03:06:22 -0800165$(objtree)/$(ARCH_DIR)/include:
166 @echo ' MKDIR $@'
167 $(Q)mkdir -p $@
168
169$(ARCH_DIR)/include/sysdep: $(objtree)/$(ARCH_DIR)/include
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 @echo ' SYMLINK $@'
Al Virofd7aab92005-05-05 16:15:29 -0700171ifneq ($(KBUILD_SRC),)
Al Viroecba97d2005-09-28 22:27:23 +0100172 $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/include/sysdep-$(SUBARCH) $(ARCH_DIR)/include/sysdep
Al Virofd7aab92005-05-05 16:15:29 -0700173else
Jeff Dikefcbaa082007-11-14 16:58:42 -0800174 $(Q)cd $(ARCH_DIR)/include && ln -fsn sysdep-$(SUBARCH) sysdep
Al Virofd7aab92005-05-05 16:15:29 -0700175endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
177$(ARCH_DIR)/os:
178 @echo ' SYMLINK $@'
Al Virofd7aab92005-05-05 16:15:29 -0700179ifneq ($(KBUILD_SRC),)
180 $(Q)ln -fsn $(srctree)/$(ARCH_DIR)/os-$(OS) $(ARCH_DIR)/os
181else
Jeff Dikefcbaa082007-11-14 16:58:42 -0800182 $(Q)cd $(ARCH_DIR) && ln -fsn os-$(OS) os
Al Virofd7aab92005-05-05 16:15:29 -0700183endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185# Generated files
186define filechk_umlconfig
187 sed 's/ CONFIG/ UML_CONFIG/'
188endef
189
Jeff Dike4ee189a2006-01-11 12:17:23 -0800190$(ARCH_DIR)/include/uml-config.h : include/linux/autoconf.h
191 $(call filechk,umlconfig)
192
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -0700193$(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s: FORCE
194 $(Q)$(MAKE) $(build)=$(ARCH_DIR)/sys-$(SUBARCH) $@
Jeff Dike4ee189a2006-01-11 12:17:23 -0800195
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200196define filechk_gen-asm-offsets
197 (set -e; \
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200198 echo "/*"; \
199 echo " * DO NOT MODIFY."; \
200 echo " *"; \
201 echo " * This file was generated by arch/$(ARCH)/Makefile"; \
202 echo " *"; \
203 echo " */"; \
204 echo ""; \
205 sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
Al Viroecba97d2005-09-28 22:27:23 +0100206 echo ""; )
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200207endef
208
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -0700209$(ARCH_DIR)/include/user_constants.h: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s
Al Viro8d0b9dc2005-05-05 16:15:23 -0700210 $(call filechk,gen-asm-offsets)
211
Jeff Dikec6b7a1e2006-02-01 03:06:22 -0800212$(ARCH_DIR)/include/kern_constants.h: $(objtree)/$(ARCH_DIR)/include
Jeff Dike4ee189a2006-01-11 12:17:23 -0800213 @echo ' SYMLINK $@'
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -0700214 $(Q)ln -sf ../../../include/asm-um/asm-offsets.h $@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Al Viro2b8232c2007-10-13 08:16:04 +0100216export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS HEADER_ARCH