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