source: mainline/kernel/Makefile@ fdaad75d

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since fdaad75d was 510bc07, checked in by Jakub Jermar <jakub@…>, 15 years ago

Fix ordering of [AL]FLAGS initialization and arch Makefile.inc inclusion.

  • Property mode set to 100644
File size: 12.9 KB
Line 
1#
2# Copyright (c) 2005 Martin Decky
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions
7# are met:
8#
9# - Redistributions of source code must retain the above copyright
10# notice, this list of conditions and the following disclaimer.
11# - Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in the
13# documentation and/or other materials provided with the distribution.
14# - The name of the author may not be used to endorse or promote products
15# derived from this software without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27#
28
29## Configuration
30#
31
32ROOT_PATH = ..
33
34VERSION_DEF = $(ROOT_PATH)/version
35
36COMMON_MAKEFILE = $(ROOT_PATH)/Makefile.common
37COMMON_HEADER = $(ROOT_PATH)/common.h
38COMMON_HEADER_ARCH = arch/$(KARCH)/include/common.h
39
40CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config
41CONFIG_HEADER = $(ROOT_PATH)/config.h
42
43-include $(VERSION_DEF)
44-include $(COMMON_MAKEFILE)
45-include $(CONFIG_MAKEFILE)
46
47## Common names
48#
49
50DEPEND = Makefile.depend
51DEPEND_PREV = $(DEPEND).prev
52RAW = kernel.raw
53BIN = kernel.bin
54MAP = kernel.map
55JOB = kernel.job
56MAP_PREV = $(MAP).prev
57DISASM = kernel.disasm
58DUMP = kernel.dump
59REAL_MAP = generic/src/debug/real_map
60
61ARCH_INCLUDE = generic/include/arch
62GENARCH_INCLUDE = generic/include/genarch
63
64GENMAP = tools/genmap.py
65JOBFILE = $(ROOT_PATH)/tools/jobfile.py
66
67LINK = arch/$(KARCH)/_link.ld
68EMPTY_MAP = generic/src/debug/empty_map.o
69SIZEOK_MAP = generic/src/debug/sizeok_map.o
70
71.PHONY: all clean
72
73all: $(VERSION_DEF) $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) $(BIN) $(DISASM)
74 -[ -f $(DEPEND) ] && cp -a $(DEPEND) $(DEPEND_PREV)
75
76clean:
77 rm -f $(DEPEND) $(DEPEND_PREV) $(RAW) $(BIN) $(MAP) $(JOB) $(MAP_PREV) $(DISASM) $(DUMP) $(REAL_MAP).* $(ARCH_INCLUDE) $(GENARCH_INCLUDE) arch/*/_link.ld arch/*/include/common.h
78 find generic/src/ arch/*/src/ genarch/src/ test/ -name '*.o' -follow -exec rm \{\} \;
79
80## Common compiler flags
81#
82
83INCLUDES = generic/include
84
85ifeq ($(CONFIG_OPTIMIZE_FOR_SIZE),y)
86 OPTIMIZATION = s
87else
88 OPTIMIZATION = 3
89endif
90
91DEFS = -DKERNEL -DRELEASE=$(RELEASE) "-DNAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__
92
93GCC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \
94 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \
95 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \
96 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \
97 -Werror-implicit-function-declaration -Wwrite-strings \
98 -pipe
99
100ICC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \
101 -ffreestanding -fno-builtin -nostdlib -nostdinc -Wall -Wmissing-prototypes \
102 -Werror-implicit-function-declaration -wd170
103
104SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \
105 -xnolib -xc99=all -features=extensions \
106 -erroff=E_ZERO_SIZED_STRUCT_UNION
107
108CLANG_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \
109 -fexec-charset=UTF-8 -fwide-exec-charset=UTF-32$(ENDIANESS) \
110 -finput-charset=UTF-8 -ffreestanding -fno-builtin -nostdlib -nostdinc \
111 -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \
112 -Werror-implicit-function-declaration -Wwrite-strings \
113 -pipe -arch $(CLANG_ARCH)
114
115ifeq ($(CONFIG_DEBUG),y)
116 GCC_CFLAGS += -Werror
117 ICC_CFLAGS += -Werror
118endif
119
120ifeq ($(CONFIG_LTO),y)
121 GCC_CFLAGS += -flto
122endif
123
124#
125# Mind the mutual ordering with the inclusion of the arch Makefile.inc.
126# AFLAGS and LFLAGS must be initialized before the inclusion.
127#
128AFLAGS =
129LFLAGS = -N -T $(LINK) -M
130
131#
132# Mind the mutual ordering with the initialization of AFLAGS and LFLAGS.
133# The arch Makefile.inc must be included after the initialization.
134#
135-include arch/$(KARCH)/Makefile.inc
136-include genarch/Makefile.inc
137-include $(DEPEND)
138
139## The at-sign
140#
141# The $(ATSIGN) variable holds the ASCII character representing the at-sign
142# ('@') used in various $(AS) constructs (e.g. @progbits). On architectures that
143# don't use '@' for starting a comment, $(ATSIGN) is merely '@'. However, on
144# those that do use it for starting a comment (e.g. arm32), $(ATSIGN) must be
145# defined as the percentile-sign ('%') in the architecture-dependent
146# Makefile.inc.
147#
148
149ATSIGN ?= @
150
151## Cross-platform assembly to start a symtab.data section
152#
153
154SYMTAB_SECTION = ".section symtab.data, \"a\", $(ATSIGN)progbits;"
155
156## Compilation options
157#
158
159ifeq ($(COMPILER),gcc_native)
160 CFLAGS = $(GCC_CFLAGS)
161 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
162endif
163
164ifeq ($(COMPILER),gcc_cross)
165 CFLAGS = $(GCC_CFLAGS)
166 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
167endif
168
169ifeq ($(COMPILER),icc)
170 CFLAGS = $(ICC_CFLAGS)
171 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
172endif
173
174ifeq ($(COMPILER),suncc)
175 CFLAGS = $(SUNCC_CFLAGS)
176 DEFS += $(CONFIG_DEFS)
177 DEPEND_DEFS = $(DEFS)
178endif
179
180ifeq ($(COMPILER),clang)
181 CFLAGS = $(CLANG_CFLAGS)
182 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
183endif
184
185
186## Generic kernel sources
187#
188
189GENERIC_SOURCES = \
190 generic/src/adt/avl.c \
191 generic/src/adt/bitmap.c \
192 generic/src/adt/btree.c \
193 generic/src/adt/hash_table.c \
194 generic/src/adt/list.c \
195 generic/src/console/chardev.c \
196 generic/src/console/console.c \
197 generic/src/cpu/cpu.c \
198 generic/src/ddi/ddi.c \
199 generic/src/ddi/irq.c \
200 generic/src/ddi/device.c \
201 generic/src/debug/symtab.c \
202 generic/src/debug/stacktrace.c \
203 generic/src/interrupt/interrupt.c \
204 generic/src/main/main.c \
205 generic/src/main/kinit.c \
206 generic/src/main/uinit.c \
207 generic/src/main/version.c \
208 generic/src/main/shutdown.c \
209 generic/src/proc/program.c \
210 generic/src/proc/scheduler.c \
211 generic/src/proc/thread.c \
212 generic/src/proc/task.c \
213 generic/src/proc/the.c \
214 generic/src/proc/tasklet.c \
215 generic/src/syscall/syscall.c \
216 generic/src/syscall/copy.c \
217 generic/src/mm/buddy.c \
218 generic/src/mm/frame.c \
219 generic/src/mm/page.c \
220 generic/src/mm/tlb.c \
221 generic/src/mm/as.c \
222 generic/src/mm/backend_anon.c \
223 generic/src/mm/backend_elf.c \
224 generic/src/mm/backend_phys.c \
225 generic/src/mm/slab.c \
226 generic/src/lib/func.c \
227 generic/src/lib/memstr.c \
228 generic/src/lib/sort.c \
229 generic/src/lib/str.c \
230 generic/src/lib/elf.c \
231 generic/src/lib/rd.c \
232 generic/src/printf/printf_core.c \
233 generic/src/printf/printf.c \
234 generic/src/printf/snprintf.c \
235 generic/src/printf/vprintf.c \
236 generic/src/printf/vsnprintf.c \
237 generic/src/time/clock.c \
238 generic/src/time/timeout.c \
239 generic/src/time/delay.c \
240 generic/src/preempt/preemption.c \
241 generic/src/synch/spinlock.c \
242 generic/src/synch/condvar.c \
243 generic/src/synch/rwlock.c \
244 generic/src/synch/mutex.c \
245 generic/src/synch/semaphore.c \
246 generic/src/synch/smc.c \
247 generic/src/synch/waitq.c \
248 generic/src/synch/futex.c \
249 generic/src/smp/ipi.c \
250 generic/src/smp/smp.c \
251 generic/src/ipc/ipc.c \
252 generic/src/ipc/sysipc.c \
253 generic/src/ipc/ipcrsc.c \
254 generic/src/ipc/irq.c \
255 generic/src/ipc/event.c \
256 generic/src/security/cap.c \
257 generic/src/sysinfo/sysinfo.c \
258 generic/src/sysinfo/stats.c
259
260## Kernel console support
261#
262
263ifeq ($(CONFIG_KCONSOLE),y)
264GENERIC_SOURCES += \
265 generic/src/console/kconsole.c \
266 generic/src/console/cmd.c
267endif
268
269## Udebug interface sources
270#
271
272ifeq ($(CONFIG_UDEBUG),y)
273GENERIC_SOURCES += \
274 generic/src/ipc/kbox.c \
275 generic/src/udebug/udebug.c \
276 generic/src/udebug/udebug_ops.c \
277 generic/src/udebug/udebug_ipc.c
278endif
279
280## Test sources
281#
282
283ifeq ($(CONFIG_TEST),y)
284 CFLAGS += -Itest/
285 GENERIC_SOURCES += \
286 test/test.c \
287 test/atomic/atomic1.c \
288 test/btree/btree1.c \
289 test/avltree/avltree1.c \
290 test/fault/fault1.c \
291 test/mm/falloc1.c \
292 test/mm/falloc2.c \
293 test/mm/mapping1.c \
294 test/mm/slab1.c \
295 test/mm/slab2.c \
296 test/synch/rwlock1.c \
297 test/synch/rwlock2.c \
298 test/synch/rwlock3.c \
299 test/synch/rwlock4.c \
300 test/synch/rwlock5.c \
301 test/synch/semaphore1.c \
302 test/synch/semaphore2.c \
303 test/print/print1.c \
304 test/print/print2.c \
305 test/print/print3.c \
306 test/print/print4.c \
307 test/thread/thread1.c
308
309 ifeq ($(KARCH),mips32)
310 GENERIC_SOURCES += test/debug/mips1.c
311 else
312 GENERIC_SOURCES += test/debug/mips1_skip.c
313 endif
314
315 ifeq ($(KARCH),ia64)
316 GENERIC_SOURCES += test/mm/purge1.c
317 else
318 GENERIC_SOURCES += test/mm/purge1_skip.c
319 endif
320
321 ifeq ($(CONFIG_FPU),y)
322 ifeq ($(KARCH),ia32)
323 TEST_FPU1 = y
324 TEST_SSE1 = y
325 GENERIC_SOURCES += test/fpu/fpu1_x86.c
326 endif
327
328 ifeq ($(KARCH),amd64)
329 TEST_FPU1 = y
330 TEST_SSE1 = y
331 GENERIC_SOURCES += test/fpu/fpu1_x86.c
332 endif
333
334 ifeq ($(KARCH),ia64)
335 TEST_FPU1 = y
336 GENERIC_SOURCES += test/fpu/fpu1_ia64.c
337 endif
338
339 ifeq ($(KARCH),mips32)
340 TEST_MIPS2 = y
341 endif
342 endif
343
344 ifneq ($(TEST_FPU1),y)
345 GENERIC_SOURCES += test/fpu/fpu1_skip.c
346 endif
347
348 ifeq ($(TEST_SSE1),y)
349 GENERIC_SOURCES += test/fpu/sse1.c
350 else
351 GENERIC_SOURCES += test/fpu/sse1_skip.c
352 endif
353
354 ifeq ($(TEST_MIPS2),y)
355 GENERIC_SOURCES += test/fpu/mips2.c
356 else
357 GENERIC_SOURCES += test/fpu/mips2_skip.c
358 endif
359
360endif
361
362GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
363ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
364GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES)))
365
366LFLAGS_LTO := $(addprefix -Xlinker ,$(LFLAGS))
367
368ifeq ($(CONFIG_SYMTAB),y)
369 SYMTAB_OBJECTS := generic/src/debug/real_map.o
370else
371 SYMTAB_OBJECTS :=
372endif
373
374$(BIN): $(RAW)
375 $(OBJCOPY) -O $(BFD) $< $@
376
377$(DISASM): $(RAW)
378 $(OBJDUMP) -d $< > $@
379
380$(RAW): $(LINK) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(SYMTAB_OBJECTS)
381ifeq ($(CONFIG_LTO),y)
382 $(GCC) $(LFLAGS_LTO) -Xlinker -Map -Xlinker $(MAP) $(DEFS) $(GCC_CFLAGS) -o $@ $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) $(SYMTAB_OBJECTS)
383else
384 $(LD) $(LFLAGS) -Map $(MAP) -o $@ $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) $(SYMTAB_OBJECTS)
385endif
386ifeq ($(CONFIG_STRIP_BINARIES),y)
387 $(STRIP) $(RAW)
388endif
389
390$(LINK): $(LINK).in $(DEPEND)
391 $(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -D__LINKER__ -E -x c $< | grep -v "^\#" > $@
392
393%.o: %.S $(DEPEND)
394 $(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -c -o $@ $<
395ifeq ($(PRECHECK),y)
396 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(GCC_CFLAGS) -D__ASM__
397endif
398
399%.o: %.s $(DEPEND)
400 $(AS) $(AFLAGS) -o $@ $<
401ifeq ($(PRECHECK),y)
402 $(JOBFILE) $(JOB) $< $@ as asm $(DEFS) $(CFLAGS) $(EXTRA_FLAGS)
403endif
404
405#
406# The FPU tests are the only objects for which we allow the compiler to generate
407# FPU instructions.
408#
409
410test/fpu/%.o: test/fpu/%.c $(DEPEND)
411 $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) -c -o $@ $<
412ifeq ($(PRECHECK),y)
413 $(JOBFILE) $(JOB) $< $@ cc test $(DEFS) $(CFLAGS) $(EXTRA_FLAGS)
414endif
415
416#
417# Ordinary objects.
418#
419
420%.o: %.c $(DEPEND)
421 $(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) $(FPU_NO_CFLAGS) -c -o $@ $<
422ifeq ($(PRECHECK),y)
423 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) $(FPU_NO_CFLAGS)
424endif
425
426$(REAL_MAP).o: $(REAL_MAP).bin
427 echo $(SYMTAB_SECTION)" .incbin \"$<\"" | $(AS) $(AFLAGS) -o $@
428
429$(REAL_MAP).bin: $(LINK) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS)
430 echo $(SYMTAB_SECTION) | $(AS) $(AFLAGS) -o $(EMPTY_MAP)
431ifeq ($(CONFIG_LTO),y)
432 $(GCC) $(LFLAGS_LTO) -Xlinker -Map -Xlinker $(MAP_PREV) $(DEFS) $(GCC_CFLAGS) -o $@ $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) $(EMPTY_MAP)
433else
434 $(LD) $(LFLAGS) -Map $(MAP_PREV) -o $@ $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) $(EMPTY_MAP)
435endif
436 $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > $(DUMP)
437 $(GENMAP) $(MAP_PREV) $(DUMP) $@
438
439 # Do it once again, this time to get correct even the symbols
440 # on architectures that have bss after symtab
441
442 echo $(SYMTAB_SECTION)" .incbin \"$@\"" | $(AS) $(AFLAGS) -o $(SIZEOK_MAP)
443ifeq ($(CONFIG_LTO),y)
444 $(GCC) $(LFLAGS_LTO) -Xlinker -Map -Xlinker $(MAP_PREV) $(DEFS) $(GCC_CFLAGS) -o $@ $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) $(SIZEOK_MAP)
445else
446 $(LD) $(LFLAGS) -Map $(MAP_PREV) -o $@ $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) $(SIZEOK_MAP)
447endif
448 $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > $(DUMP)
449 $(GENMAP) $(MAP_PREV) $(DUMP) $@
450
451$(DEPEND): $(ARCH_INCLUDE) $(GENARCH_INCLUDE) $(COMMON_HEADER_ARCH)
452 makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > $@ 2> /dev/null
453 -[ -f $(DEPEND_PREV) ] && diff -q $(DEPEND_PREV) $@ && mv -f $(DEPEND_PREV) $@
454
455$(ARCH_INCLUDE): arch/$(KARCH)/include/
456 ln -sfn ../../$< $@
457
458$(GENARCH_INCLUDE): genarch/include/
459 ln -sfn ../../$< $@
460
461$(COMMON_HEADER_ARCH): $(COMMON_HEADER)
462 ln -sfn ../../../$< $@
Note: See TracBrowser for help on using the repository browser.