diff options
author | Christoph Lameter <clameter@sgi.com> | 2008-04-28 05:12:44 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:21 -0400 |
commit | 1cdf25d704f7951d02a04064c97db547d6021872 (patch) | |
tree | 2571b70c1d95ea66086500b362a0f7fe2999acbc /Kbuild | |
parent | 308c05e35e3517d19bb67a7e97772235c9e15cd7 (diff) |
kbuild: create a way to create preprocessor constants from C expressions
The use of enums create constants that are not available to the preprocessor
when building the kernel (f.e. MAX_NR_ZONES).
Arch code already has a way to export constants calculated to the preprocessor
through the asm-offsets.c file. Generate something similar for the core
kernel through kbuild.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Christoph Lameter <clameter@sgi.com>
Cc: Andy Whitcroft <apw@shadowen.org>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Rik van Riel <riel@redhat.com>
Cc: Mel Gorman <mel@csn.ul.ie>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Kbuild')
-rw-r--r-- | Kbuild | 56 |
1 files changed, 48 insertions, 8 deletions
@@ -1,19 +1,54 @@ | |||
1 | # | 1 | # |
2 | # Kbuild for top-level directory of the kernel | 2 | # Kbuild for top-level directory of the kernel |
3 | # This file takes care of the following: | 3 | # This file takes care of the following: |
4 | # 1) Generate asm-offsets.h | 4 | # 1) Generate bounds.h |
5 | # 2) Check for missing system calls | 5 | # 2) Generate asm-offsets.h (may need bounds.h) |
6 | # 3) Check for missing system calls | ||
6 | 7 | ||
7 | ##### | 8 | ##### |
8 | # 1) Generate asm-offsets.h | 9 | # 1) Generate bounds.h |
10 | |||
11 | bounds-file := include/linux/bounds.h | ||
12 | |||
13 | always := $(bounds-file) | ||
14 | targets := $(bounds-file) kernel/bounds.s | ||
15 | |||
16 | quiet_cmd_bounds = GEN $@ | ||
17 | define cmd_bounds | ||
18 | (set -e; \ | ||
19 | echo "#ifndef __LINUX_BOUNDS_H__"; \ | ||
20 | echo "#define __LINUX_BOUNDS_H__"; \ | ||
21 | echo "/*"; \ | ||
22 | echo " * DO NOT MODIFY."; \ | ||
23 | echo " *"; \ | ||
24 | echo " * This file was generated by Kbuild"; \ | ||
25 | echo " *"; \ | ||
26 | echo " */"; \ | ||
27 | echo ""; \ | ||
28 | sed -ne $(sed-y) $<; \ | ||
29 | echo ""; \ | ||
30 | echo "#endif" ) > $@ | ||
31 | endef | ||
32 | |||
33 | # We use internal kbuild rules to avoid the "is up to date" message from make | ||
34 | kernel/bounds.s: kernel/bounds.c FORCE | ||
35 | $(Q)mkdir -p $(dir $@) | ||
36 | $(call if_changed_dep,cc_s_c) | ||
37 | |||
38 | $(obj)/$(bounds-file): kernel/bounds.s Kbuild | ||
39 | $(Q)mkdir -p $(dir $@) | ||
40 | $(call cmd,bounds) | ||
41 | |||
42 | ##### | ||
43 | # 2) Generate asm-offsets.h | ||
9 | # | 44 | # |
10 | 45 | ||
11 | offsets-file := include/asm-$(SRCARCH)/asm-offsets.h | 46 | offsets-file := include/asm-$(SRCARCH)/asm-offsets.h |
12 | 47 | ||
13 | always := $(offsets-file) | 48 | always += $(offsets-file) |
14 | targets := $(offsets-file) | 49 | targets += $(offsets-file) |
15 | targets += arch/$(SRCARCH)/kernel/asm-offsets.s | 50 | targets += arch/$(SRCARCH)/kernel/asm-offsets.s |
16 | clean-files := $(addprefix $(objtree)/,$(targets)) | 51 | |
17 | 52 | ||
18 | # Default sed regexp - multiline due to syntax constraints | 53 | # Default sed regexp - multiline due to syntax constraints |
19 | define sed-y | 54 | define sed-y |
@@ -40,7 +75,8 @@ define cmd_offsets | |||
40 | endef | 75 | endef |
41 | 76 | ||
42 | # We use internal kbuild rules to avoid the "is up to date" message from make | 77 | # We use internal kbuild rules to avoid the "is up to date" message from make |
43 | arch/$(SRCARCH)/kernel/asm-offsets.s: arch/$(SRCARCH)/kernel/asm-offsets.c FORCE | 78 | arch/$(SRCARCH)/kernel/asm-offsets.s: arch/$(SRCARCH)/kernel/asm-offsets.c \ |
79 | $(obj)/$(bounds-file) FORCE | ||
44 | $(Q)mkdir -p $(dir $@) | 80 | $(Q)mkdir -p $(dir $@) |
45 | $(call if_changed_dep,cc_s_c) | 81 | $(call if_changed_dep,cc_s_c) |
46 | 82 | ||
@@ -49,7 +85,7 @@ $(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s Kbuild | |||
49 | $(call cmd,offsets) | 85 | $(call cmd,offsets) |
50 | 86 | ||
51 | ##### | 87 | ##### |
52 | # 2) Check for missing system calls | 88 | # 3) Check for missing system calls |
53 | # | 89 | # |
54 | 90 | ||
55 | quiet_cmd_syscalls = CALL $< | 91 | quiet_cmd_syscalls = CALL $< |
@@ -58,3 +94,7 @@ quiet_cmd_syscalls = CALL $< | |||
58 | PHONY += missing-syscalls | 94 | PHONY += missing-syscalls |
59 | missing-syscalls: scripts/checksyscalls.sh FORCE | 95 | missing-syscalls: scripts/checksyscalls.sh FORCE |
60 | $(call cmd,syscalls) | 96 | $(call cmd,syscalls) |
97 | |||
98 | # Delete all targets during make clean | ||
99 | clean-files := $(addprefix $(objtree)/,$(targets)) | ||
100 | |||