blob: fab8121d2b32a2059ea24ac2a70b5da3c221a888 [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
Al Viro8569c912008-08-17 13:48:37 -040021MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared/skas
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Jeff Dike42fda662007-10-16 01:26:50 -070023include $(srctree)/$(ARCH_DIR)/Makefile-skas
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Al Viro22409f92009-01-05 17:18:42 +000025SHARED_HEADERS := $(ARCH_DIR)/include/shared
26ARCH_INCLUDE := -I$(srctree)/$(SHARED_HEADERS)
Al Viroaa7bd942008-08-23 17:28:20 -040027ARCH_INCLUDE += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH)/shared
Al Virofd7aab92005-05-05 16:15:29 -070028ifneq ($(KBUILD_SRC),)
Al Viro22409f92009-01-05 17:18:42 +000029ARCH_INCLUDE += -I$(SHARED_HEADERS)
Al Virofd7aab92005-05-05 16:15:29 -070030endif
Al Viroaa7bd942008-08-23 17:28:20 -040031KBUILD_CPPFLAGS += -I$(srctree)/$(ARCH_DIR)/sys-$(SUBARCH)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080033# -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so
34# named - it's a common symbol in libpcap, so we get a binary which crashes.
Paolo 'Blaisorblade' Giarrussofd748102005-09-21 18:39:32 +020035#
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080036# Same things for in6addr_loopback and mktime - found in libc. For these two we
37# only get link-time error, luckily.
38#
39# These apply to USER_CFLAGS to.
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070040
Jeff Dike260c0cb2008-02-04 22:31:02 -080041KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ -DSUBARCH=\"$(SUBARCH)\" \
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080042 $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \
Jeff Dike818f6ef2007-10-16 01:26:45 -070043 -Din6addr_loopback=kernel_in6addr_loopback \
44 -Din6addr_any=kernel_in6addr_any
Paolo 'Blaisorblade' Giarrussofd748102005-09-21 18:39:32 +020045
Sam Ravnborg222d3942007-10-15 21:59:31 +020046KBUILD_AFLAGS += $(ARCH_INCLUDE)
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070047
akpm@osdl.orgd45e44d2006-10-29 22:46:42 -080048USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\
Sam Ravnborga0f97e02007-10-14 22:21:35 +020049 $(patsubst -I%,,$(KBUILD_CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \
Jeff Dike260c0cb2008-02-04 22:31:02 -080050 $(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64
akpm@osdl.orgd45e44d2006-10-29 22:46:42 -080051
52include $(srctree)/$(ARCH_DIR)/Makefile-$(SUBARCH)
53
54#This will adjust *FLAGS accordingly to the platform.
55include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS)
Paolo 'Blaisorblade' Giarrussoecc354a2005-07-14 00:33:41 -070056
Al Viro1de15022008-08-17 22:54:55 -040057KBUILD_CPPFLAGS += -I$(srctree)/arch/$(HEADER_ARCH)/include
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059# -Derrno=kernel_errno - This turns all kernel references to errno into
60# kernel_errno to separate them from the libc errno. This allows -fno-common
Sam Ravnborga0f97e02007-10-14 22:21:35 +020061# in KBUILD_CFLAGS. Otherwise, it would cause ld to complain about the two different
Linus Torvalds1da177e2005-04-16 15:20:36 -070062# errnos.
Paolo 'Blaisorblade' Giarrusso98105d42006-02-01 03:06:25 -080063# These apply to kernelspace only.
Jeff Dikef15cf512007-11-05 14:50:59 -080064#
65# strip leading and trailing whitespace to make the USER_CFLAGS removal of these
66# defines more robust
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jeff Dikef15cf512007-11-05 14:50:59 -080068KERNEL_DEFINES = $(strip -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \
69 -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES))
Sam Ravnborga0f97e02007-10-14 22:21:35 +020070KBUILD_CFLAGS += $(KERNEL_DEFINES)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Paul Smith4f193362006-03-05 17:14:10 -050072PHONY += linux
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74all: linux
75
76linux: vmlinux
Jeff Dikea4b741e2006-05-01 12:16:06 -070077 @echo ' LINK $@'
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -070078 $(Q)ln -f $< $@
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80define archhelp
81 echo '* linux - Binary kernel image (./linux) - for backward'
82 echo ' compatibility only, this creates a hard link to the'
Matt LaPlante4b3f6862006-10-03 22:21:02 +020083 echo ' real kernel binary, the "vmlinux" binary you'
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 echo ' find in the kernel root.'
85endef
86
Al Viro61bee202008-08-25 04:51:27 -040087KBUILD_KCONFIG := arch/um/Kconfig.$(HEADER_ARCH)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Al Viro22409f92009-01-05 17:18:42 +000089archprepare: $(SHARED_HEADERS)/user_constants.h
90archprepare: $(SHARED_HEADERS)/kern_constants.h
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static
93LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib
94
Paolo 'Blaisorblade' Giarrusso275e6e12006-05-01 12:16:04 -070095CFLAGS_NO_HARDENING := $(call cc-option, -fno-PIC,) $(call cc-option, -fno-pic,) \
96 $(call cc-option, -fno-stack-protector,) \
97 $(call cc-option, -fno-stack-protector-all,)
98
Sam Ravnborg51b563f2009-09-20 12:28:22 +020099# Options used by linker script
100export LDS_START := $(START)
101export LDS_ELF_ARCH := $(ELF_ARCH)
102export LDS_ELF_FORMAT := $(ELF_FORMAT)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Jeff Dike4c9e1382007-10-16 01:26:54 -0700104# The wrappers will select whether using "malloc" or the kernel allocator.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc
106
Jeff Dike260c0cb2008-02-04 22:31:02 -0800107LD_FLAGS_CMDLINE = $(foreach opt,$(LDFLAGS),-Wl,$(opt))
Jeff Dike0ba7fe02008-02-04 22:30:45 -0800108
109CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110define cmd_vmlinux__
111 $(CC) $(CFLAGS_vmlinux) -o $@ \
112 -Wl,-T,$(vmlinux-lds) $(vmlinux-init) \
113 -Wl,--start-group $(vmlinux-main) -Wl,--end-group \
Paolo 'Blaisorblade' Giarrusso776cfeb2005-05-05 16:15:18 -0700114 -lutil \
Al Viro75473c12007-07-20 02:01:16 +0100115 $(filter-out $(vmlinux-lds) $(vmlinux-init) $(vmlinux-main) vmlinux.o \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 FORCE ,$^) ; rm -f linux
117endef
118
Jeff Dike4c9e1382007-10-16 01:26:54 -0700119# When cleaning we don't include .config, so we don't include
120# TT or skas makefiles and don't clean skas_ptregs.h.
Al Viro87e299e2008-10-11 18:39:18 -0400121CLEAN_FILES += linux x.i gmon.out \
Al Viro22409f92009-01-05 17:18:42 +0000122 $(SHARED_HEADERS)/user_constants.h \
123 $(SHARED_HEADERS)/kern_constants.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125archclean:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \
127 -o -name '*.gcov' \) -type f -print | xargs rm -f
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129# Generated files
Jeff Dike4ee189a2006-01-11 12:17:23 -0800130
Paolo 'Blaisorblade' Giarrussocb8aa3d2006-05-01 12:16:03 -0700131$(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s: FORCE
132 $(Q)$(MAKE) $(build)=$(ARCH_DIR)/sys-$(SUBARCH) $@
Jeff Dike4ee189a2006-01-11 12:17:23 -0800133
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200134define filechk_gen-asm-offsets
135 (set -e; \
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200136 echo "/*"; \
137 echo " * DO NOT MODIFY."; \
138 echo " *"; \
139 echo " * This file was generated by arch/$(ARCH)/Makefile"; \
140 echo " *"; \
141 echo " */"; \
142 echo ""; \
143 sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \
Al Viroecba97d2005-09-28 22:27:23 +0100144 echo ""; )
Sam Ravnborgf64a2272005-09-09 23:10:54 +0200145endef
146
Al Viro22409f92009-01-05 17:18:42 +0000147$(SHARED_HEADERS)/user_constants.h: $(ARCH_DIR)/sys-$(SUBARCH)/user-offsets.s
Al Viro8d0b9dc2005-05-05 16:15:23 -0700148 $(call filechk,gen-asm-offsets)
149
Al Viro22409f92009-01-05 17:18:42 +0000150$(SHARED_HEADERS)/kern_constants.h:
151 $(Q)mkdir -p $(dir $@)
Sam Ravnborg559df2e2009-04-19 22:35:10 +0200152 $(Q)echo '#include "../../../../include/generated/asm-offsets.h"' >$@
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Al Viroec82c322008-08-25 04:14:29 -0400154export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS HEADER_ARCH DEV_NULL_PATH