Paul Smith | 4f19336 | 2006-03-05 17:14:10 -0500 | [diff] [blame] | 1 | # |
| 2 | # This file is included by the global makefile so that you can add your own |
| 3 | # architecture-specific flags and dependencies. |
| 4 | # |
Jeff Dike | 4c9e138 | 2007-10-16 01:26:54 -0700 | [diff] [blame] | 5 | # Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | # Licensed under the GPL |
| 7 | # |
| 8 | |
| 9 | ARCH_DIR := arch/um |
| 10 | OS := $(shell uname -s) |
| 11 | # We require bash because the vmlinux link and loader script cpp use bash |
| 12 | # features. |
| 13 | SHELL := /bin/bash |
| 14 | |
| 15 | filechk_gen_header = $< |
| 16 | |
| 17 | core-y += $(ARCH_DIR)/kernel/ \ |
| 18 | $(ARCH_DIR)/drivers/ \ |
| 19 | $(ARCH_DIR)/os-$(OS)/ |
| 20 | |
Al Viro | 8569c91 | 2008-08-17 13:48:37 -0400 | [diff] [blame] | 21 | MODE_INCLUDE += -I$(srctree)/$(ARCH_DIR)/include/shared/skas |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Al Viro | 7bbe720 | 2011-08-18 20:06:29 +0100 | [diff] [blame] | 23 | HEADER_ARCH := $(SUBARCH) |
| 24 | |
| 25 | # Additional ARCH settings for x86 |
| 26 | ifeq ($(SUBARCH),i386) |
| 27 | HEADER_ARCH := x86 |
| 28 | endif |
| 29 | ifeq ($(SUBARCH),x86_64) |
| 30 | HEADER_ARCH := x86 |
Richard Weinberger | 12783aa | 2012-01-24 20:09:12 +0100 | [diff] [blame] | 31 | KBUILD_CFLAGS += -mcmodel=large |
Al Viro | 7bbe720 | 2011-08-18 20:06:29 +0100 | [diff] [blame] | 32 | endif |
| 33 | |
Al Viro | 5c48b10 | 2011-08-18 20:06:39 +0100 | [diff] [blame] | 34 | HOST_DIR := arch/$(HEADER_ARCH) |
| 35 | |
Jeff Dike | 42fda66 | 2007-10-16 01:26:50 -0700 | [diff] [blame] | 36 | include $(srctree)/$(ARCH_DIR)/Makefile-skas |
Al Viro | 5c48b10 | 2011-08-18 20:06:39 +0100 | [diff] [blame] | 37 | include $(srctree)/$(HOST_DIR)/Makefile.um |
| 38 | |
| 39 | core-y += $(HOST_DIR)/um/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
Al Viro | 22409f9 | 2009-01-05 17:18:42 +0000 | [diff] [blame] | 41 | SHARED_HEADERS := $(ARCH_DIR)/include/shared |
| 42 | ARCH_INCLUDE := -I$(srctree)/$(SHARED_HEADERS) |
Al Viro | 5c48b10 | 2011-08-18 20:06:39 +0100 | [diff] [blame] | 43 | ARCH_INCLUDE += -I$(srctree)/$(HOST_DIR)/um/shared |
| 44 | KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/um |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
Paolo 'Blaisorblade' Giarrusso | 98105d4 | 2006-02-01 03:06:25 -0800 | [diff] [blame] | 46 | # -Dvmap=kernel_vmap prevents anything from referencing the libpcap.o symbol so |
| 47 | # named - it's a common symbol in libpcap, so we get a binary which crashes. |
Paolo 'Blaisorblade' Giarrusso | fd74810 | 2005-09-21 18:39:32 +0200 | [diff] [blame] | 48 | # |
Paolo 'Blaisorblade' Giarrusso | 98105d4 | 2006-02-01 03:06:25 -0800 | [diff] [blame] | 49 | # Same things for in6addr_loopback and mktime - found in libc. For these two we |
| 50 | # only get link-time error, luckily. |
| 51 | # |
| 52 | # These apply to USER_CFLAGS to. |
Paolo 'Blaisorblade' Giarrusso | ecc354a | 2005-07-14 00:33:41 -0700 | [diff] [blame] | 53 | |
Al Viro | dc5be20 | 2012-02-11 05:39:56 -0500 | [diff] [blame] | 54 | KBUILD_CFLAGS += $(CFLAGS) $(CFLAGS-y) -D__arch_um__ \ |
Paolo 'Blaisorblade' Giarrusso | 98105d4 | 2006-02-01 03:06:25 -0800 | [diff] [blame] | 55 | $(ARCH_INCLUDE) $(MODE_INCLUDE) -Dvmap=kernel_vmap \ |
Jeff Dike | 818f6ef | 2007-10-16 01:26:45 -0700 | [diff] [blame] | 56 | -Din6addr_loopback=kernel_in6addr_loopback \ |
Al Viro | 2c51a4b | 2011-09-14 16:21:38 -0700 | [diff] [blame] | 57 | -Din6addr_any=kernel_in6addr_any -Dstrrchr=kernel_strrchr |
Paolo 'Blaisorblade' Giarrusso | fd74810 | 2005-09-21 18:39:32 +0200 | [diff] [blame] | 58 | |
Sam Ravnborg | 222d394 | 2007-10-15 21:59:31 +0200 | [diff] [blame] | 59 | KBUILD_AFLAGS += $(ARCH_INCLUDE) |
Paolo 'Blaisorblade' Giarrusso | ecc354a | 2005-07-14 00:33:41 -0700 | [diff] [blame] | 60 | |
akpm@osdl.org | d45e44d | 2006-10-29 22:46:42 -0800 | [diff] [blame] | 61 | USER_CFLAGS = $(patsubst $(KERNEL_DEFINES),,$(patsubst -D__KERNEL__,,\ |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 62 | $(patsubst -I%,,$(KBUILD_CFLAGS)))) $(ARCH_INCLUDE) $(MODE_INCLUDE) \ |
Al Viro | 4d45db9 | 2011-08-18 20:00:59 +0100 | [diff] [blame] | 63 | $(filter -I%,$(CFLAGS)) -D_FILE_OFFSET_BITS=64 -idirafter include |
akpm@osdl.org | d45e44d | 2006-10-29 22:46:42 -0800 | [diff] [blame] | 64 | |
akpm@osdl.org | d45e44d | 2006-10-29 22:46:42 -0800 | [diff] [blame] | 65 | #This will adjust *FLAGS accordingly to the platform. |
| 66 | include $(srctree)/$(ARCH_DIR)/Makefile-os-$(OS) |
Paolo 'Blaisorblade' Giarrusso | ecc354a | 2005-07-14 00:33:41 -0700 | [diff] [blame] | 67 | |
H. Peter Anvin | c9b284b | 2011-12-05 16:03:30 -0800 | [diff] [blame] | 68 | KBUILD_CPPFLAGS += -I$(srctree)/$(HOST_DIR)/include \ |
| 69 | -I$(HOST_DIR)/include/generated |
Al Viro | 1de1502 | 2008-08-17 22:54:55 -0400 | [diff] [blame] | 70 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | # -Derrno=kernel_errno - This turns all kernel references to errno into |
| 72 | # kernel_errno to separate them from the libc errno. This allows -fno-common |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 73 | # in KBUILD_CFLAGS. Otherwise, it would cause ld to complain about the two different |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | # errnos. |
Paolo 'Blaisorblade' Giarrusso | 98105d4 | 2006-02-01 03:06:25 -0800 | [diff] [blame] | 75 | # These apply to kernelspace only. |
Jeff Dike | f15cf51 | 2007-11-05 14:50:59 -0800 | [diff] [blame] | 76 | # |
| 77 | # strip leading and trailing whitespace to make the USER_CFLAGS removal of these |
| 78 | # defines more robust |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Jeff Dike | f15cf51 | 2007-11-05 14:50:59 -0800 | [diff] [blame] | 80 | KERNEL_DEFINES = $(strip -Derrno=kernel_errno -Dsigprocmask=kernel_sigprocmask \ |
| 81 | -Dmktime=kernel_mktime $(ARCH_KERNEL_DEFINES)) |
Sam Ravnborg | a0f97e0 | 2007-10-14 22:21:35 +0200 | [diff] [blame] | 82 | KBUILD_CFLAGS += $(KERNEL_DEFINES) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Paul Smith | 4f19336 | 2006-03-05 17:14:10 -0500 | [diff] [blame] | 84 | PHONY += linux |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
| 86 | all: linux |
| 87 | |
| 88 | linux: vmlinux |
Jeff Dike | a4b741e | 2006-05-01 12:16:06 -0700 | [diff] [blame] | 89 | @echo ' LINK $@' |
Paolo 'Blaisorblade' Giarrusso | cb8aa3d | 2006-05-01 12:16:03 -0700 | [diff] [blame] | 90 | $(Q)ln -f $< $@ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | define archhelp |
| 93 | echo '* linux - Binary kernel image (./linux) - for backward' |
| 94 | echo ' compatibility only, this creates a hard link to the' |
Matt LaPlante | 4b3f686 | 2006-10-03 22:21:02 +0200 | [diff] [blame] | 95 | echo ' real kernel binary, the "vmlinux" binary you' |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | echo ' find in the kernel root.' |
| 97 | endef |
| 98 | |
Al Viro | 5c48b10 | 2011-08-18 20:06:39 +0100 | [diff] [blame] | 99 | KBUILD_KCONFIG := $(HOST_DIR)/um/Kconfig |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
H. Peter Anvin | c9b284b | 2011-12-05 16:03:30 -0800 | [diff] [blame] | 101 | archheaders: |
H. Peter Anvin | 79320bc | 2011-12-09 10:59:59 -0800 | [diff] [blame] | 102 | $(Q)$(MAKE) -C '$(srctree)' KBUILD_SRC= \ |
Al Viro | dc5be20 | 2012-02-11 05:39:56 -0500 | [diff] [blame] | 103 | ARCH=$(HEADER_ARCH) O='$(objtree)' archheaders |
H. Peter Anvin | c9b284b | 2011-12-05 16:03:30 -0800 | [diff] [blame] | 104 | |
Al Viro | 4de1c5f | 2011-08-18 20:01:19 +0100 | [diff] [blame] | 105 | archprepare: include/generated/user_constants.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
| 107 | LINK-$(CONFIG_LD_SCRIPT_STATIC) += -static |
| 108 | LINK-$(CONFIG_LD_SCRIPT_DYN) += -Wl,-rpath,/lib |
| 109 | |
Paolo 'Blaisorblade' Giarrusso | 275e6e1 | 2006-05-01 12:16:04 -0700 | [diff] [blame] | 110 | CFLAGS_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 | |
Sam Ravnborg | 51b563f | 2009-09-20 12:28:22 +0200 | [diff] [blame] | 114 | # Options used by linker script |
| 115 | export LDS_START := $(START) |
| 116 | export LDS_ELF_ARCH := $(ELF_ARCH) |
| 117 | export LDS_ELF_FORMAT := $(ELF_FORMAT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Jeff Dike | 4c9e138 | 2007-10-16 01:26:54 -0700 | [diff] [blame] | 119 | # The wrappers will select whether using "malloc" or the kernel allocator. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | LINK_WRAPS = -Wl,--wrap,malloc -Wl,--wrap,free -Wl,--wrap,calloc |
| 121 | |
Jeff Dike | 260c0cb | 2008-02-04 22:31:02 -0800 | [diff] [blame] | 122 | LD_FLAGS_CMDLINE = $(foreach opt,$(LDFLAGS),-Wl,$(opt)) |
Jeff Dike | 0ba7fe0 | 2008-02-04 22:30:45 -0800 | [diff] [blame] | 123 | |
Sam Ravnborg | 1f2bfbd | 2012-05-05 10:18:41 +0200 | [diff] [blame] | 124 | # Used by link-vmlinux.sh which has special support for um link |
| 125 | export CFLAGS_vmlinux := $(LINK-y) $(LINK_WRAPS) $(LD_FLAGS_CMDLINE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Jeff Dike | 4c9e138 | 2007-10-16 01:26:54 -0700 | [diff] [blame] | 127 | # When cleaning we don't include .config, so we don't include |
| 128 | # TT or skas makefiles and don't clean skas_ptregs.h. |
Al Viro | 9e63645 | 2011-08-18 20:01:49 +0100 | [diff] [blame] | 129 | CLEAN_FILES += linux x.i gmon.out |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | archclean: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | @find . \( -name '*.bb' -o -name '*.bbg' -o -name '*.da' \ |
| 133 | -o -name '*.gcov' \) -type f -print | xargs rm -f |
| 134 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | # Generated files |
Jeff Dike | 4ee189a | 2006-01-11 12:17:23 -0800 | [diff] [blame] | 136 | |
H. Peter Anvin | 392f4b7 | 2011-12-05 16:06:02 -0800 | [diff] [blame] | 137 | $(HOST_DIR)/um/user-offsets.s: __headers FORCE |
Al Viro | 5c48b10 | 2011-08-18 20:06:39 +0100 | [diff] [blame] | 138 | $(Q)$(MAKE) $(build)=$(HOST_DIR)/um $@ |
Jeff Dike | 4ee189a | 2006-01-11 12:17:23 -0800 | [diff] [blame] | 139 | |
Sam Ravnborg | f64a227 | 2005-09-09 23:10:54 +0200 | [diff] [blame] | 140 | define filechk_gen-asm-offsets |
| 141 | (set -e; \ |
Sam Ravnborg | f64a227 | 2005-09-09 23:10:54 +0200 | [diff] [blame] | 142 | echo "/*"; \ |
| 143 | echo " * DO NOT MODIFY."; \ |
| 144 | echo " *"; \ |
| 145 | echo " * This file was generated by arch/$(ARCH)/Makefile"; \ |
| 146 | echo " *"; \ |
| 147 | echo " */"; \ |
| 148 | echo ""; \ |
| 149 | sed -ne "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}"; \ |
Al Viro | ecba97d | 2005-09-28 22:27:23 +0100 | [diff] [blame] | 150 | echo ""; ) |
Sam Ravnborg | f64a227 | 2005-09-09 23:10:54 +0200 | [diff] [blame] | 151 | endef |
| 152 | |
Al Viro | 5c48b10 | 2011-08-18 20:06:39 +0100 | [diff] [blame] | 153 | include/generated/user_constants.h: $(HOST_DIR)/um/user-offsets.s |
Al Viro | 8d0b9dc | 2005-05-05 16:15:23 -0700 | [diff] [blame] | 154 | $(call filechk,gen-asm-offsets) |
| 155 | |
Al Viro | 5c48b10 | 2011-08-18 20:06:39 +0100 | [diff] [blame] | 156 | export SUBARCH USER_CFLAGS CFLAGS_NO_HARDENING OS DEV_NULL_PATH |