wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 1 | # |
Wolfgang Denk | eca3aeb | 2013-06-21 10:22:36 +0200 | [diff] [blame] | 2 | # (C) Copyright 2000-2013 |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | eca3aeb | 2013-06-21 10:22:36 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 6 | # |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 7 | ######################################################################### |
| 8 | |
Benoît Thébaudeau | 120ae60 | 2013-04-11 09:35:54 +0000 | [diff] [blame] | 9 | # Set shell to bash if possible, otherwise fall back to sh |
| 10 | SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ |
| 11 | else if [ -x /bin/bash ]; then echo /bin/bash; \ |
| 12 | else echo sh; fi; fi) |
| 13 | |
| 14 | export SHELL |
| 15 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 16 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 17 | SPL_BIN := u-boot-tpl |
| 18 | else |
| 19 | SPL_BIN := u-boot-spl |
| 20 | endif |
| 21 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 22 | ifeq ($(CURDIR),$(SRCTREE)) |
Wolfgang Denk | 511d0c7 | 2006-10-09 00:42:01 +0200 | [diff] [blame] | 23 | dir := |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 24 | else |
| 25 | dir := $(subst $(SRCTREE)/,,$(CURDIR)) |
| 26 | endif |
| 27 | |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 28 | ifneq ($(OBJTREE),$(SRCTREE)) |
| 29 | # Create object files for SPL in a separate directory |
| 30 | ifeq ($(CONFIG_SPL_BUILD),y) |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 31 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 32 | obj := $(if $(dir),$(TPLTREE)/$(dir)/,$(TPLTREE)/) |
| 33 | else |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 34 | obj := $(if $(dir),$(SPLTREE)/$(dir)/,$(SPLTREE)/) |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 35 | endif |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 36 | else |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 37 | obj := $(if $(dir),$(OBJTREE)/$(dir)/,$(OBJTREE)/) |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 38 | endif |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 39 | src := $(if $(dir),$(SRCTREE)/$(dir)/,$(SRCTREE)/) |
| 40 | |
| 41 | $(shell mkdir -p $(obj)) |
| 42 | else |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 43 | # Create object files for SPL in a separate directory |
| 44 | ifeq ($(CONFIG_SPL_BUILD),y) |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 45 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 46 | obj := $(if $(dir),$(TPLTREE)/$(dir)/,$(TPLTREE)/) |
| 47 | else |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 48 | obj := $(if $(dir),$(SPLTREE)/$(dir)/,$(SPLTREE)/) |
| 49 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 50 | endif |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 51 | $(shell mkdir -p $(obj)) |
| 52 | else |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 53 | obj := |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 54 | endif |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 55 | src := |
| 56 | endif |
| 57 | |
wdenk | 592c5ca | 2003-06-21 00:17:24 +0000 | [diff] [blame] | 58 | # clean the slate ... |
| 59 | PLATFORM_RELFLAGS = |
| 60 | PLATFORM_CPPFLAGS = |
| 61 | PLATFORM_LDFLAGS = |
| 62 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 63 | ######################################################################### |
| 64 | |
Scott Wood | d984fed | 2009-11-04 18:41:41 -0600 | [diff] [blame] | 65 | HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer \ |
| 66 | $(HOSTCPPFLAGS) |
| 67 | HOSTSTRIP = strip |
| 68 | |
| 69 | # |
| 70 | # Mac OS X / Darwin's C preprocessor is Apple specific. It |
| 71 | # generates numerous errors and warnings. We want to bypass it |
Wolfgang Denk | 844f07d | 2010-11-27 23:30:56 +0100 | [diff] [blame] | 72 | # and use GNU C's cpp. To do this we pass the -traditional-cpp |
Scott Wood | d984fed | 2009-11-04 18:41:41 -0600 | [diff] [blame] | 73 | # option to the compiler. Note that the -traditional-cpp flag |
| 74 | # DOES NOT have the same semantics as GNU C's flag, all it does |
| 75 | # is invoke the GNU preprocessor in stock ANSI/ISO C fashion. |
| 76 | # |
| 77 | # Apple's linker is similar, thanks to the new 2 stage linking |
| 78 | # multiple symbol definitions are treated as errors, hence the |
| 79 | # -multiply_defined suppress option to turn off this error. |
| 80 | # |
| 81 | |
Mike Frysinger | 4cda437 | 2009-01-17 13:32:42 -0500 | [diff] [blame] | 82 | ifeq ($(HOSTOS),darwin) |
Andreas Biessmann | c7da8c1 | 2010-05-22 13:17:21 +0200 | [diff] [blame] | 83 | # get major and minor product version (e.g. '10' and '6' for Snow Leopard) |
| 84 | DARWIN_MAJOR_VERSION = $(shell sw_vers -productVersion | cut -f 1 -d '.') |
| 85 | DARWIN_MINOR_VERSION = $(shell sw_vers -productVersion | cut -f 2 -d '.') |
| 86 | |
Mike Frysinger | f534c7c | 2010-08-03 19:17:38 -0400 | [diff] [blame] | 87 | os_x_before = $(shell if [ $(DARWIN_MAJOR_VERSION) -le $(1) -a \ |
| 88 | $(DARWIN_MINOR_VERSION) -le $(2) ] ; then echo "$(3)"; else echo "$(4)"; fi ;) |
Andreas Biessmann | c7da8c1 | 2010-05-22 13:17:21 +0200 | [diff] [blame] | 89 | |
| 90 | # Snow Leopards build environment has no longer restrictions as described above |
Mike Frysinger | f534c7c | 2010-08-03 19:17:38 -0400 | [diff] [blame] | 91 | HOSTCC = $(call os_x_before, 10, 5, "cc", "gcc") |
| 92 | HOSTCFLAGS += $(call os_x_before, 10, 4, "-traditional-cpp") |
| 93 | HOSTLDFLAGS += $(call os_x_before, 10, 5, "-multiply_defined suppress") |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 94 | else |
| 95 | HOSTCC = gcc |
| 96 | endif |
Scott Wood | d984fed | 2009-11-04 18:41:41 -0600 | [diff] [blame] | 97 | |
| 98 | ifeq ($(HOSTOS),cygwin) |
| 99 | HOSTCFLAGS += -ansi |
| 100 | endif |
| 101 | |
| 102 | # We build some files with extra pedantic flags to try to minimize things |
| 103 | # that won't build on some weird host compiler -- though there are lots of |
| 104 | # exceptions for files that aren't complaint. |
| 105 | |
| 106 | HOSTCFLAGS_NOPED = $(filter-out -pedantic,$(HOSTCFLAGS)) |
| 107 | HOSTCFLAGS += -pedantic |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 108 | |
| 109 | ######################################################################### |
Wolfgang Denk | 1820d4c | 2005-10-04 22:38:24 +0200 | [diff] [blame] | 110 | # |
Tom Rini | 19a695f | 2012-03-16 05:27:47 +0000 | [diff] [blame] | 111 | # Option checker, gcc version (courtesy linux kernel) to ensure |
Wolfgang Denk | 1820d4c | 2005-10-04 22:38:24 +0200 | [diff] [blame] | 112 | # only supported compiler options are used |
| 113 | # |
Daniel Schwierzeck | b6a467d | 2011-11-07 05:26:43 +0000 | [diff] [blame] | 114 | CC_OPTIONS_CACHE_FILE := $(OBJTREE)/include/generated/cc_options.mk |
Tom Rini | 6f4acc1 | 2012-02-14 07:29:37 +0000 | [diff] [blame] | 115 | CC_TEST_OFILE := $(OBJTREE)/include/generated/cc_test_file.o |
Daniel Schwierzeck | b6a467d | 2011-11-07 05:26:43 +0000 | [diff] [blame] | 116 | |
| 117 | -include $(CC_OPTIONS_CACHE_FILE) |
| 118 | |
Tom Rini | 6f4acc1 | 2012-02-14 07:29:37 +0000 | [diff] [blame] | 119 | cc-option-sys = $(shell mkdir -p $(dir $(CC_TEST_OFILE)); \ |
| 120 | if $(CC) $(CFLAGS) $(1) -S -xc /dev/null -o $(CC_TEST_OFILE) \ |
Daniel Schwierzeck | b6a467d | 2011-11-07 05:26:43 +0000 | [diff] [blame] | 121 | > /dev/null 2>&1; then \ |
| 122 | echo 'CC_OPTIONS += $(strip $1)' >> $(CC_OPTIONS_CACHE_FILE); \ |
| 123 | echo "$(1)"; fi) |
| 124 | |
| 125 | ifeq ($(CONFIG_CC_OPT_CACHE_DISABLE),y) |
| 126 | cc-option = $(strip $(if $(call cc-option-sys,$1),$1,$2)) |
| 127 | else |
| 128 | cc-option = $(strip $(if $(findstring $1,$(CC_OPTIONS)),$1,\ |
| 129 | $(if $(call cc-option-sys,$1),$1,$2))) |
| 130 | endif |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 131 | |
Tom Rini | 19a695f | 2012-03-16 05:27:47 +0000 | [diff] [blame] | 132 | # cc-version |
| 133 | # Usage gcc-ver := $(call cc-version) |
| 134 | cc-version = $(shell $(SHELL) $(SRCTREE)/tools/gcc-version.sh $(CC)) |
Allen Martin | 2051ff3 | 2012-08-15 11:38:53 +0000 | [diff] [blame] | 135 | binutils-version = $(shell $(SHELL) $(SRCTREE)/tools/binutils-version.sh $(AS)) |
Stephen Warren | 501ebdf | 2013-07-24 10:09:16 -0700 | [diff] [blame] | 136 | dtc-version = $(shell $(SHELL) $(SRCTREE)/tools/dtc-version.sh $(DTC)) |
Tom Rini | 19a695f | 2012-03-16 05:27:47 +0000 | [diff] [blame] | 137 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 138 | # |
| 139 | # Include the make variables (CC, etc...) |
| 140 | # |
| 141 | AS = $(CROSS_COMPILE)as |
Khem Raj | 7cb714a | 2012-08-02 06:19:34 +0000 | [diff] [blame] | 142 | |
| 143 | # Always use GNU ld |
| 144 | LD = $(shell if $(CROSS_COMPILE)ld.bfd -v > /dev/null 2>&1; \ |
| 145 | then echo "$(CROSS_COMPILE)ld.bfd"; else echo "$(CROSS_COMPILE)ld"; fi;) |
| 146 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 147 | CC = $(CROSS_COMPILE)gcc |
| 148 | CPP = $(CC) -E |
| 149 | AR = $(CROSS_COMPILE)ar |
| 150 | NM = $(CROSS_COMPILE)nm |
Mike Frysinger | 94a91e2 | 2008-02-04 19:26:57 -0500 | [diff] [blame] | 151 | LDR = $(CROSS_COMPILE)ldr |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 152 | STRIP = $(CROSS_COMPILE)strip |
| 153 | OBJCOPY = $(CROSS_COMPILE)objcopy |
| 154 | OBJDUMP = $(CROSS_COMPILE)objdump |
| 155 | RANLIB = $(CROSS_COMPILE)RANLIB |
Simon Glass | bbb0b12 | 2011-10-15 05:48:21 +0000 | [diff] [blame] | 156 | DTC = dtc |
Kim Phillips | 4ab6493 | 2012-09-21 12:28:17 +0000 | [diff] [blame] | 157 | CHECK = sparse |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 158 | |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 159 | ######################################################################### |
| 160 | |
| 161 | # Load generated board configuration |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 162 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 163 | # Include TPL autoconf |
| 164 | sinclude $(OBJTREE)/include/tpl-autoconf.mk |
| 165 | else |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 166 | ifeq ($(CONFIG_SPL_BUILD),y) |
| 167 | # Include SPL autoconf |
| 168 | sinclude $(OBJTREE)/include/spl-autoconf.mk |
| 169 | else |
| 170 | # Include normal autoconf |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 171 | sinclude $(OBJTREE)/include/autoconf.mk |
Joel Fernandes | 39bc12d | 2013-08-19 16:14:14 +0800 | [diff] [blame] | 172 | endif |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 173 | endif |
Joakim Tjernlund | 5e987dd | 2011-01-17 23:39:26 +0100 | [diff] [blame] | 174 | sinclude $(OBJTREE)/include/config.mk |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 175 | |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 176 | # Some architecture config.mk files need to know what CPUDIR is set to, |
| 177 | # so calculate CPUDIR before including ARCH/SOC/CPU config.mk files. |
Peter Tyser | 8d1f268 | 2010-04-12 22:28:09 -0500 | [diff] [blame] | 178 | # Check if arch/$ARCH/cpu/$CPU exists, otherwise assume arch/$ARCH/cpu contains |
| 179 | # CPU-specific code. |
| 180 | CPUDIR=arch/$(ARCH)/cpu/$(CPU) |
| 181 | ifneq ($(SRCTREE)/$(CPUDIR),$(wildcard $(SRCTREE)/$(CPUDIR))) |
| 182 | CPUDIR=arch/$(ARCH)/cpu |
| 183 | endif |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 184 | |
Peter Tyser | ea0364f | 2010-04-12 22:28:04 -0500 | [diff] [blame] | 185 | sinclude $(TOPDIR)/arch/$(ARCH)/config.mk # include architecture dependend rules |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 186 | sinclude $(TOPDIR)/$(CPUDIR)/config.mk # include CPU specific rules |
| 187 | |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 188 | ifdef SOC |
Peter Tyser | 03b7004 | 2010-04-12 22:28:02 -0500 | [diff] [blame] | 189 | sinclude $(TOPDIR)/$(CPUDIR)/$(SOC)/config.mk # include SoC specific rules |
Wolfgang Denk | c4e5f52 | 2008-05-03 22:25:00 +0200 | [diff] [blame] | 190 | endif |
| 191 | ifdef VENDOR |
| 192 | BOARDDIR = $(VENDOR)/$(BOARD) |
| 193 | else |
| 194 | BOARDDIR = $(BOARD) |
| 195 | endif |
| 196 | ifdef BOARD |
| 197 | sinclude $(TOPDIR)/board/$(BOARDDIR)/config.mk # include board specific rules |
| 198 | endif |
| 199 | |
| 200 | ######################################################################### |
| 201 | |
Mike Frysinger | 5968adc | 2011-10-12 19:25:20 +0000 | [diff] [blame] | 202 | # We don't actually use $(ARFLAGS) anywhere anymore, so catch people |
| 203 | # who are porting old code to latest mainline but not updating $(AR). |
| 204 | ARFLAGS = $(error update your Makefile to use cmd_link_o_target and not AR) |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 205 | RELFLAGS= $(PLATFORM_RELFLAGS) |
Heiko Schocher | 9acb626 | 2006-04-20 08:42:42 +0200 | [diff] [blame] | 206 | DBGFLAGS= -g # -DDEBUG |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 207 | OPTFLAGS= -Os #-fomit-frame-pointer |
Scott Wood | 83b7e2a | 2011-04-06 13:31:37 +0000 | [diff] [blame] | 208 | |
wdenk | 6dd652f | 2003-06-19 23:40:20 +0000 | [diff] [blame] | 209 | OBJCFLAGS += --gap-fill=0xff |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 210 | |
wdenk | b783eda | 2003-06-25 22:26:29 +0000 | [diff] [blame] | 211 | gccincdir := $(shell $(CC) -print-file-name=include) |
| 212 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 213 | CPPFLAGS := $(DBGFLAGS) $(OPTFLAGS) $(RELFLAGS) \ |
Marek Vasut | c1f5805 | 2012-09-14 23:46:48 +0200 | [diff] [blame] | 214 | -D__KERNEL__ |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 215 | |
| 216 | # Enable garbage collection of un-used sections for SPL |
| 217 | ifeq ($(CONFIG_SPL_BUILD),y) |
| 218 | CPPFLAGS += -ffunction-sections -fdata-sections |
| 219 | LDFLAGS_FINAL += --gc-sections |
| 220 | endif |
| 221 | |
Simon Glass | 29ce737 | 2013-06-27 10:43:18 -0700 | [diff] [blame] | 222 | # TODO(sjg@chromium.org): Is this correct on Mac OS? |
Marek Vasut | bce8837 | 2013-08-26 20:43:33 +0200 | [diff] [blame] | 223 | |
| 224 | # MXSImage needs LibSSL |
| 225 | ifneq ($(CONFIG_MX23)$(CONFIG_MX28),) |
| 226 | HOSTLIBS += -lssl -lcrypto |
| 227 | # Add CONFIG_MXS into host CFLAGS, so we can check whether or not register |
| 228 | # the mxsimage support within tools/mxsimage.c . |
| 229 | HOSTCFLAGS += -DCONFIG_MXS |
| 230 | endif |
| 231 | |
Simon Glass | 29ce737 | 2013-06-27 10:43:18 -0700 | [diff] [blame] | 232 | ifdef CONFIG_FIT_SIGNATURE |
| 233 | HOSTLIBS += -lssl -lcrypto |
Simon Glass | 971c450 | 2013-07-17 15:10:59 -0700 | [diff] [blame] | 234 | |
| 235 | # This affects include/image.h, but including the board config file |
| 236 | # is tricky, so manually define this options here. |
| 237 | HOSTCFLAGS += -DCONFIG_FIT_SIGNATURE |
Simon Glass | 29ce737 | 2013-06-27 10:43:18 -0700 | [diff] [blame] | 238 | endif |
| 239 | |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 240 | ifneq ($(CONFIG_SYS_TEXT_BASE),) |
| 241 | CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) |
Mike Frysinger | 161b2af | 2008-01-28 05:28:50 -0500 | [diff] [blame] | 242 | endif |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 243 | |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 244 | ifeq ($(CONFIG_SPL_BUILD),y) |
| 245 | CPPFLAGS += -DCONFIG_SPL_BUILD |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 246 | ifeq ($(CONFIG_TPL_BUILD),y) |
| 247 | CPPFLAGS += -DCONFIG_TPL_BUILD |
| 248 | endif |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 249 | endif |
| 250 | |
Simon Glass | 5c1a7ea | 2013-03-08 13:45:27 +0000 | [diff] [blame] | 251 | # Does this architecture support generic board init? |
| 252 | ifeq ($(__HAVE_ARCH_GENERIC_BOARD),) |
| 253 | ifneq ($(CONFIG_SYS_GENERIC_BOARD),) |
Simon Glass | fada9e2 | 2013-04-20 08:42:36 +0000 | [diff] [blame] | 254 | CHECK_GENERIC_BOARD = $(error Your architecture does not support generic board. \ |
| 255 | Please undefined CONFIG_SYS_GENERIC_BOARD in your board config file) |
Simon Glass | 5c1a7ea | 2013-03-08 13:45:27 +0000 | [diff] [blame] | 256 | endif |
| 257 | endif |
| 258 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 259 | ifneq ($(OBJTREE),$(SRCTREE)) |
Masahiro Yamada | bb02c53 | 2013-11-01 10:28:45 +0900 | [diff] [blame] | 260 | CPPFLAGS += -I$(OBJTREE)/include |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 261 | endif |
| 262 | |
Masahiro Yamada | bb02c53 | 2013-11-01 10:28:45 +0900 | [diff] [blame] | 263 | CPPFLAGS += -I$(TOPDIR)/include -I$(SRCTREE)/arch/$(ARCH)/include |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 264 | CPPFLAGS += -fno-builtin -ffreestanding -nostdinc \ |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 265 | -isystem $(gccincdir) -pipe $(PLATFORM_CPPFLAGS) |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 266 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 267 | CFLAGS := $(CPPFLAGS) -Wall -Wstrict-prototypes |
Marek Vasut | d642c46 | 2013-04-27 07:50:11 +0000 | [diff] [blame] | 268 | |
| 269 | ifdef BUILD_TAG |
| 270 | CFLAGS += -DBUILD_TAG='"$(BUILD_TAG)"' |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 271 | endif |
| 272 | |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 273 | CFLAGS_SSP := $(call cc-option,-fno-stack-protector) |
| 274 | CFLAGS += $(CFLAGS_SSP) |
Mike Frysinger | 6262e4e | 2011-04-25 08:06:40 +0000 | [diff] [blame] | 275 | # Some toolchains enable security related warning flags by default, |
| 276 | # but they don't make much sense in the u-boot world, so disable them. |
Wolfgang Denk | cca4e4a | 2011-11-01 20:54:02 +0000 | [diff] [blame] | 277 | CFLAGS_WARN := $(call cc-option,-Wno-format-nonliteral) \ |
| 278 | $(call cc-option,-Wno-format-security) |
| 279 | CFLAGS += $(CFLAGS_WARN) |
Haavard Skinnemoen | 28eab0d | 2008-05-19 12:26:38 +0200 | [diff] [blame] | 280 | |
Tom Rini | 4a30f1e | 2012-02-20 13:50:10 +0000 | [diff] [blame] | 281 | # Report stack usage if supported |
| 282 | CFLAGS_STACK := $(call cc-option,-fstack-usage) |
| 283 | CFLAGS += $(CFLAGS_STACK) |
| 284 | |
Simon Glass | 5c2aeac | 2013-06-11 11:14:41 -0700 | [diff] [blame] | 285 | BCURDIR = $(subst $(SRCTREE)/,,$(CURDIR:$(obj)%=%)) |
| 286 | |
| 287 | ifeq ($(findstring examples/,$(BCURDIR)),) |
| 288 | ifeq ($(CONFIG_SPL_BUILD),) |
| 289 | ifdef FTRACE |
| 290 | CFLAGS += -finstrument-functions -DFTRACE |
| 291 | endif |
| 292 | endif |
| 293 | endif |
| 294 | |
Haavard Skinnemoen | e11887a | 2006-10-26 17:55:31 +0200 | [diff] [blame] | 295 | # $(CPPFLAGS) sets -g, which causes gcc to pass a suitable -g<format> |
| 296 | # option to the assembler. |
| 297 | AFLAGS_DEBUG := |
Marian Balakowicz | b62fa91 | 2006-05-17 12:18:48 +0200 | [diff] [blame] | 298 | |
Marian Balakowicz | 483a0cf | 2006-05-09 11:28:36 +0200 | [diff] [blame] | 299 | # turn jbsr into jsr for m68k |
| 300 | ifeq ($(ARCH),m68k) |
| 301 | ifeq ($(findstring 3.4,$(shell $(CC) --version)),3.4) |
| 302 | AFLAGS_DEBUG := -Wa,-gstabs,-S |
| 303 | endif |
Marian Balakowicz | 483a0cf | 2006-05-09 11:28:36 +0200 | [diff] [blame] | 304 | endif |
Marian Balakowicz | b62fa91 | 2006-05-17 12:18:48 +0200 | [diff] [blame] | 305 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 306 | AFLAGS := $(AFLAGS_DEBUG) -D__ASSEMBLY__ $(CPPFLAGS) |
| 307 | |
Nobuhiro Iwamatsu | 8aba9dc | 2011-01-06 10:23:54 +0900 | [diff] [blame] | 308 | LDFLAGS += $(PLATFORM_LDFLAGS) |
Haiying Wang | 6dc1eceb | 2011-02-22 16:38:05 -0500 | [diff] [blame] | 309 | LDFLAGS_FINAL += -Bstatic |
Nobuhiro Iwamatsu | 8aba9dc | 2011-01-06 10:23:54 +0900 | [diff] [blame] | 310 | |
Haiying Wang | 6dc1eceb | 2011-02-22 16:38:05 -0500 | [diff] [blame] | 311 | LDFLAGS_u-boot += -T $(obj)u-boot.lds $(LDFLAGS_FINAL) |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 312 | ifneq ($(CONFIG_SYS_TEXT_BASE),) |
Nobuhiro Iwamatsu | 8aba9dc | 2011-01-06 10:23:54 +0900 | [diff] [blame] | 313 | LDFLAGS_u-boot += -Ttext $(CONFIG_SYS_TEXT_BASE) |
Mike Frysinger | 161b2af | 2008-01-28 05:28:50 -0500 | [diff] [blame] | 314 | endif |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 315 | |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 316 | LDFLAGS_$(SPL_BIN) += -T $(obj)u-boot-spl.lds $(LDFLAGS_FINAL) |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 317 | ifneq ($(CONFIG_SPL_TEXT_BASE),) |
Ying Zhang | 3aa29de | 2013-08-16 15:16:15 +0800 | [diff] [blame] | 318 | LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_SPL_TEXT_BASE) |
Daniel Schwierzeck | c8f9c30 | 2011-07-18 06:09:15 +0000 | [diff] [blame] | 319 | endif |
| 320 | |
Kim Phillips | 4ab6493 | 2012-09-21 12:28:17 +0000 | [diff] [blame] | 321 | # Linus' kernel sanity checking tool |
| 322 | CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ \ |
Wolfgang Denk | 93e1459 | 2013-10-04 17:43:24 +0200 | [diff] [blame] | 323 | -Wbitwise -Wno-return-void -D__CHECK_ENDIAN__ $(CF) |
Kim Phillips | 4ab6493 | 2012-09-21 12:28:17 +0000 | [diff] [blame] | 324 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 325 | # Location of a usable BFD library, where we define "usable" as |
| 326 | # "built for ${HOST}, supports ${TARGET}". Sensible values are |
| 327 | # - When cross-compiling: the root of the cross-environment |
| 328 | # - Linux/ppc (native): /usr |
| 329 | # - NetBSD/ppc (native): you lose ... (must extract these from the |
| 330 | # binutils build directory, plus the native and U-Boot include |
| 331 | # files don't like each other) |
| 332 | # |
| 333 | # So far, this is used only by tools/gdb/Makefile. |
| 334 | |
Mike Frysinger | 4cda437 | 2009-01-17 13:32:42 -0500 | [diff] [blame] | 335 | ifeq ($(HOSTOS),darwin) |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 336 | BFD_ROOT_DIR = /usr/local/tools |
| 337 | else |
wdenk | ea909b7 | 2002-11-21 23:11:29 +0000 | [diff] [blame] | 338 | ifeq ($(HOSTARCH),$(ARCH)) |
| 339 | # native |
| 340 | BFD_ROOT_DIR = /usr |
| 341 | else |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 342 | #BFD_ROOT_DIR = /LinuxPPC/CDK # Linux/i386 |
| 343 | #BFD_ROOT_DIR = /usr/pkg/cross # NetBSD/i386 |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 344 | BFD_ROOT_DIR = /opt/powerpc |
| 345 | endif |
wdenk | ea909b7 | 2002-11-21 23:11:29 +0000 | [diff] [blame] | 346 | endif |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 347 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 348 | ######################################################################### |
| 349 | |
Scott Wood | d984fed | 2009-11-04 18:41:41 -0600 | [diff] [blame] | 350 | export HOSTCC HOSTCFLAGS HOSTLDFLAGS PEDCFLAGS HOSTSTRIP CROSS_COMPILE \ |
Peter Tyser | 434c51a | 2008-11-12 13:06:48 -0600 | [diff] [blame] | 351 | AS LD CC CPP AR NM STRIP OBJCOPY OBJDUMP MAKE |
Wolfgang Denk | 14d0a02 | 2010-10-07 21:51:12 +0200 | [diff] [blame] | 352 | export CONFIG_SYS_TEXT_BASE PLATFORM_CPPFLAGS PLATFORM_RELFLAGS CPPFLAGS CFLAGS AFLAGS |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 353 | |
| 354 | ######################################################################### |
| 355 | |
Mike Frysinger | 5ec5529 | 2009-06-14 09:33:00 -0400 | [diff] [blame] | 356 | # Allow boards to use custom optimize flags on a per dir/file basis |
Mike Frysinger | 326a694 | 2010-12-15 07:17:31 -0500 | [diff] [blame] | 357 | ALL_AFLAGS = $(AFLAGS) $(AFLAGS_$(BCURDIR)/$(@F)) $(AFLAGS_$(BCURDIR)) |
| 358 | ALL_CFLAGS = $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) |
Simon Glass | 4750884 | 2011-10-07 13:53:49 +0000 | [diff] [blame] | 359 | EXTRA_CPPFLAGS = $(CPPFLAGS_$(BCURDIR)/$(@F)) $(CPPFLAGS_$(BCURDIR)) |
| 360 | ALL_CFLAGS += $(EXTRA_CPPFLAGS) |
| 361 | |
| 362 | # The _DEP version uses the $< file target (for dependency generation) |
| 363 | # See rules.mk |
| 364 | EXTRA_CPPFLAGS_DEP = $(CPPFLAGS_$(BCURDIR)/$(addsuffix .o,$(basename $<))) \ |
| 365 | $(CPPFLAGS_$(BCURDIR)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 366 | $(obj)%.s: %.S |
Mike Frysinger | 326a694 | 2010-12-15 07:17:31 -0500 | [diff] [blame] | 367 | $(CPP) $(ALL_AFLAGS) -o $@ $< |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 368 | $(obj)%.o: %.S |
Mike Frysinger | 326a694 | 2010-12-15 07:17:31 -0500 | [diff] [blame] | 369 | $(CC) $(ALL_AFLAGS) -o $@ $< -c |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 370 | $(obj)%.o: %.c |
Kim Phillips | 4ab6493 | 2012-09-21 12:28:17 +0000 | [diff] [blame] | 371 | ifneq ($(CHECKSRC),0) |
| 372 | $(CHECK) $(CHECKFLAGS) $(ALL_CFLAGS) $< |
| 373 | endif |
Mike Frysinger | 326a694 | 2010-12-15 07:17:31 -0500 | [diff] [blame] | 374 | $(CC) $(ALL_CFLAGS) -o $@ $< -c |
Mike Frysinger | 31f30c9 | 2009-06-14 11:03:48 -0400 | [diff] [blame] | 375 | $(obj)%.i: %.c |
Mike Frysinger | 326a694 | 2010-12-15 07:17:31 -0500 | [diff] [blame] | 376 | $(CPP) $(ALL_CFLAGS) -o $@ $< -c |
Mike Frysinger | 31f30c9 | 2009-06-14 11:03:48 -0400 | [diff] [blame] | 377 | $(obj)%.s: %.c |
Mike Frysinger | 326a694 | 2010-12-15 07:17:31 -0500 | [diff] [blame] | 378 | $(CC) $(ALL_CFLAGS) -o $@ $< -c -S |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 379 | |
wdenk | e221174 | 2002-11-02 23:30:20 +0000 | [diff] [blame] | 380 | ######################################################################### |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 381 | |
| 382 | # If the list of objects to link is empty, just create an empty built-in.o |
| 383 | cmd_link_o_target = $(if $(strip $1),\ |
Nobuhiro Iwamatsu | 8aba9dc | 2011-01-06 10:23:54 +0900 | [diff] [blame] | 384 | $(LD) $(LDFLAGS) -r -o $@ $1,\ |
Wolfgang Denk | 844f07d | 2010-11-27 23:30:56 +0100 | [diff] [blame] | 385 | rm -f $@; $(AR) rcs $@ ) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 386 | |
| 387 | ######################################################################### |