source: mainline/boot/Makefile.build@ d470ec8

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d470ec8 was 9b642f92, checked in by jzr <zarevucky.jiri@…>, 8 years ago

Merge reproducibility improvements.

These improvements reduce the alteration to output files due to outside influences and randomness. This makes most of the output files reproducible, and by consequence more easily comparable.

  • Property mode set to 100644
File size: 4.0 KB
Line 
1#
2# Copyright (c) 2006 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.PHONY: all clean depend
30
31include Makefile.common
32
33INCLUDES = -Igeneric/include -Iarch/$(KARCH)/include -Igenarch/include -I$(ROOT_PATH)/abi/include
34OPTIMIZATION = 3
35
36DEFS = -DBOOT -DRELEASE=$(RELEASE) "-DCOPYRIGHT=$(COPYRIGHT)" "-DNAME=$(NAME)" -D__$(BITS)_BITS__ -D__$(ENDIANESS)__
37
38AFLAGS =
39LFLAGS = --fatal-warnings --warn-common
40
41# FIXME: This condition is a workaround for issue #693.
42ifneq ($(BARCH),mips32)
43 AFLAGS += --fatal-warnings
44endif
45
46COMMON_CFLAGS = $(INCLUDES) -O$(OPTIMIZATION) -imacros $(CONFIG_HEADER) \
47 -ffreestanding -fno-builtin -nostdlib -nostdinc \
48 -fexec-charset=UTF-8 -finput-charset=UTF-8 -fno-common \
49 -fdebug-prefix-map=$(realpath $(ROOT_PATH))=.
50
51GCC_CFLAGS = -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \
52 -std=gnu99 -Werror-implicit-function-declaration -Wwrite-strings \
53 -pipe
54
55CLANG_CFLAGS = -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes \
56 -Werror-implicit-function-declaration -Wwrite-strings \
57 -pipe -fno-stack-protector -fno-PIC
58
59ifeq ($(CONFIG_DEBUG),y)
60 COMMON_CFLAGS += -Werror
61endif
62
63ifeq ($(CONFIG_LINE_DEBUG),y)
64 COMMON_CFLAGS += -g
65endif
66
67ifeq ($(COMPILER),clang)
68 CFLAGS = $(COMMON_CFLAGS) $(CLANG_CFLAGS) $(EXTRA_CFLAGS)
69else
70 CFLAGS = $(COMMON_CFLAGS) $(GCC_CFLAGS) $(EXTRA_CFLAGS)
71endif
72
73OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
74DEPENDS := $(addsuffix .d,$(basename $(SOURCES)))
75
76all: $(VERSION_DEF) $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) $(BOOT_OUTPUT)
77
78clean:
79 rm -f $(RAW) $(MAP)
80
81-include $(DEPENDS)
82
83AS_CFLAGS := $(addprefix -Xassembler ,$(AFLAGS))
84
85$(BOOT_OUTPUT): $(RAW)
86 $(OBJCOPY) -O $(BFD_OUTPUT) $< $@
87
88$(RAW): $(OBJECTS) $(LINK)
89 $(LD) -n $(LFLAGS) -T $(LINK) -M -Map $(MAP) -o $@ $(OBJECTS)
90
91$(LINK): | depend
92 $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -D__LINKER__ -E -x c $(LINK).in | grep -v "^\#" > $(LINK)
93
94%.o: %.S | depend
95 $(CC) -MD $(DEFS) $(CFLAGS) $(AS_CFLAGS) -D__ASM__ -c $< -o $@
96ifeq ($(PRECHECK),y)
97 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__
98endif
99
100%.o: %.c | depend
101 $(CC) -MD $(DEFS) $(CFLAGS) -c $< -o $@
102ifeq ($(PRECHECK),y)
103 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS)
104endif
105
106%.o: %.s | depend
107 $(CC) -MD $(DEFS) $(CFLAGS) $(AS_CFLAGS) -D__ASM__ -c $< -o $@
108ifeq ($(PRECHECK),y)
109 $(JOBFILE) $(JOB) $< $@ as asm
110endif
111
112depend: $(PRE_DEPEND)
113
114$(COMPS).s: $(COMPS).zip
115 unzip -p $< $@ > $@
116
117$(COMPS).h: $(COMPS).zip
118 unzip -p $< $@ > $@
119
120$(COMPS)_desc.c: $(COMPS).zip
121 unzip -p $< $@ > $@
122
123$(COMPONENTS_DEFLATE): $(COMPS).zip
124 unzip -p $< $@ > $@
125
126$(COMPS).zip: $(COMPONENTS)
127 $(MKARRAY) --deflate $(COMPS) $(COMP) "$(AS_PROLOG)" ".section .components, \"a\"" $^
128
129include Makefile.initrd
130
Note: See TracBrowser for help on using the repository browser.