2 # Copyright (C) 2006-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
8 ifneq ($(__rules_inc
),1)
12 -include $(TOPDIR
)/.config
14 include $(TOPDIR
)/include/debug.mk
15 include $(TOPDIR
)/include/verbose.mk
17 TMP_DIR
:=$(TOPDIR
)/tmp
22 qstrip
=$(strip $(subst ",,$(1)))
26 space
:= $(empty
) $(empty
)
27 merge
=$(subst $(space
),,$(1))
28 confvar
=$(call merge
,$(foreach v
,$(1),$(if
$($(v
)),y
,n
)))
29 strip_last
=$(patsubst %.
$(lastword
$(subst .
,$(space
),$(1))),%,$(1))
35 _SINGLE
=export MAKEFLAGS
=$(space
);
37 ARCH
:=$(subst i486
,i386
,$(subst i586
,i386
,$(subst i686
,i386
,$(call qstrip
,$(CONFIG_ARCH
)))))
38 ARCH_PACKAGES
:=$(call qstrip
,$(CONFIG_TARGET_ARCH_PACKAGES
))
39 BOARD
:=$(call qstrip
,$(CONFIG_TARGET_BOARD
))
40 TARGET_OPTIMIZATION
:=$(call qstrip
,$(CONFIG_TARGET_OPTIMIZATION
))
41 TARGET_SUFFIX
=$(call qstrip
,$(CONFIG_TARGET_SUFFIX
))
42 BUILD_SUFFIX
:=$(call qstrip
,$(CONFIG_BUILD_SUFFIX
))
43 SUBDIR
:=$(patsubst $(TOPDIR
)/%,%,${CURDIR})
44 export SHELL
:=/usr
/bin
/env bash
46 OPTIMIZE_FOR_CPU
=$(subst i386
,i486
,$(ARCH
))
48 ifeq ($(ARCH
),powerpc
)
57 ifneq ($(findstring -mips32r2
,$(TARGET_OPTIMIZATION
)),)
60 ifneq ($(findstring -march
=armv4
,$(TARGET_OPTIMIZATION
)),)
63 ifneq ($(findstring -march
=armv4t
,$(TARGET_OPTIMIZATION
)),)
66 ifneq ($(findstring -march
=armv5t
,$(TARGET_OPTIMIZATION
)),)
69 ifneq ($(findstring -march
=armv5te
,$(TARGET_OPTIMIZATION
)),)
72 ifdef CONFIG_HAS_SPE_FPU
73 TARGET_SUFFIX
:=$(TARGET_SUFFIX
)spe
76 DL_DIR
:=$(if
$(call qstrip
,$(CONFIG_DOWNLOAD_FOLDER
)),$(call qstrip
,$(CONFIG_DOWNLOAD_FOLDER
)),$(TOPDIR
)/dl
)
77 BIN_DIR
:=$(TOPDIR
)/bin
/$(BOARD
)
78 INCLUDE_DIR
:=$(TOPDIR
)/include
79 SCRIPT_DIR
:=$(TOPDIR
)/scripts
80 BUILD_DIR_BASE
:=$(TOPDIR
)/build_dir
81 BUILD_DIR_HOST
:=$(BUILD_DIR_BASE
)/host
82 STAGING_DIR_HOST
:=$(TOPDIR
)/staging_dir
/host
83 ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN
),)
84 GCCV
:=$(call qstrip
,$(CONFIG_GCC_VERSION
))
85 LIBC
:=$(call qstrip
,$(CONFIG_LIBC
))
86 LIBCV
:=$(call qstrip
,$(CONFIG_LIBC_VERSION
))
87 REAL_GNU_TARGET_NAME
=$(OPTIMIZE_FOR_CPU
)-openwrt-linux
$(if
$(TARGET_SUFFIX
),-$(TARGET_SUFFIX
))
88 GNU_TARGET_NAME
=$(OPTIMIZE_FOR_CPU
)-openwrt-linux
89 DIR_SUFFIX
:=_
$(LIBC
)-$(LIBCV
)$(if
$(CONFIG_EABI_SUPPORT
),_eabi
)
90 BUILD_DIR
:=$(BUILD_DIR_BASE
)/target-
$(ARCH
)$(ARCH_SUFFIX
)$(DIR_SUFFIX
)$(if
$(BUILD_SUFFIX
),_
$(BUILD_SUFFIX
))
91 STAGING_DIR
:=$(TOPDIR
)/staging_dir
/target-
$(ARCH
)$(ARCH_SUFFIX
)$(DIR_SUFFIX
)
92 BUILD_DIR_TOOLCHAIN
:=$(BUILD_DIR_BASE
)/toolchain-
$(ARCH
)$(ARCH_SUFFIX
)_gcc-
$(GCCV
)$(DIR_SUFFIX
)
93 TOOLCHAIN_DIR
:=$(TOPDIR
)/staging_dir
/toolchain-
$(ARCH
)$(ARCH_SUFFIX
)_gcc-
$(GCCV
)$(DIR_SUFFIX
)
94 PACKAGE_DIR
:=$(BIN_DIR
)/packages
96 ifeq ($(CONFIG_NATIVE_TOOLCHAIN
),)
97 GNU_TARGET_NAME
=$(call qstrip
,$(CONFIG_TARGET_NAME
))
99 GNU_TARGET_NAME
=$(shell gcc
-dumpmachine
)
101 REAL_GNU_TARGET_NAME
=$(GNU_TARGET_NAME
)
102 BUILD_DIR
:=$(BUILD_DIR_BASE
)/target-
$(GNU_TARGET_NAME
)$(if
$(BUILD_SUFFIX
),_
$(BUILD_SUFFIX
))
103 STAGING_DIR
:=$(TOPDIR
)/staging_dir
/target-
$(GNU_TARGET_NAME
)
104 BUILD_DIR_TOOLCHAIN
:=$(BUILD_DIR_BASE
)/toolchain-
$(GNU_TARGET_NAME
)
105 TOOLCHAIN_DIR
:=$(TOPDIR
)/staging_dir
/toolchain-
$(GNU_TARGET_NAME
)
106 PACKAGE_DIR
:=$(BIN_DIR
)/packages
108 STAMP_DIR
:=$(BUILD_DIR
)/stamp
109 STAMP_DIR_HOST
=$(BUILD_DIR_HOST
)/stamp
110 TARGET_ROOTFS_DIR?
=$(if
$(call qstrip
,$(CONFIG_TARGET_ROOTFS_DIR
)),$(call qstrip
,$(CONFIG_TARGET_ROOTFS_DIR
)),$(BUILD_DIR
))
111 TARGET_DIR
:=$(TARGET_ROOTFS_DIR
)/root-
$(BOARD
)
112 STAGING_DIR_ROOT
:=$(STAGING_DIR
)/root-
$(BOARD
)
113 BUILD_LOG_DIR
:=$(TOPDIR
)/logs
115 TARGET_PATH
:=$(STAGING_DIR_HOST
)/bin
:$(PATH
)
116 TARGET_CFLAGS
:=$(TARGET_OPTIMIZATION
)$(if
$(CONFIG_DEBUG
), -g3
)
117 TARGET_CPPFLAGS
:=-I
$(STAGING_DIR
)/usr
/include -I
$(STAGING_DIR
)/include
118 TARGET_LDFLAGS
:=-L
$(STAGING_DIR
)/usr
/lib
-L
$(STAGING_DIR
)/lib
119 LIBGCC_S
=$(if
$(wildcard $(TOOLCHAIN_DIR
)/lib
/libgcc_s.so
),-L
$(TOOLCHAIN_DIR
)/lib
-lgcc_s
,$(wildcard $(TOOLCHAIN_DIR
)/lib
/gcc
/*/*/libgcc.a
))
120 ifdef CONFIG_USE_UCLIBC
125 ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN
),)
126 -include $(TOOLCHAIN_DIR
)/info.mk
127 TARGET_CROSS
:=$(if
$(TARGET_CROSS
),$(TARGET_CROSS
),$(OPTIMIZE_FOR_CPU
)-openwrt-linux
$(if
$(TARGET_SUFFIX
),-$(TARGET_SUFFIX
))-)
128 TARGET_CFLAGS
+= -fhonour-copts
129 TARGET_CPPFLAGS
+= -I
$(TOOLCHAIN_DIR
)/usr
/include -I
$(TOOLCHAIN_DIR
)/include
130 TARGET_LDFLAGS
+= -L
$(TOOLCHAIN_DIR
)/usr
/lib
-L
$(TOOLCHAIN_DIR
)/lib
131 TARGET_PATH
:=$(TOOLCHAIN_DIR
)/bin
:$(TARGET_PATH
)
133 ifeq ($(CONFIG_NATIVE_TOOLCHAIN
),)
134 TARGET_CROSS
:=$(call qstrip
,$(CONFIG_TOOLCHAIN_PREFIX
))
135 TOOLCHAIN_ROOT_DIR
:=$(call qstrip
,$(CONFIG_TOOLCHAIN_ROOT
))
136 TOOLCHAIN_BIN_DIRS
:=$(patsubst .
/%,$(TOOLCHAIN_ROOT_DIR
)/%,$(call qstrip
,$(CONFIG_TOOLCHAIN_BIN_PATH
)))
137 TOOLCHAIN_INC_DIRS
:=$(patsubst .
/%,$(TOOLCHAIN_ROOT_DIR
)/%,$(call qstrip
,$(CONFIG_TOOLCHAIN_INC_PATH
)))
138 TOOLCHAIN_LIB_DIRS
:=$(patsubst .
/%,$(TOOLCHAIN_ROOT_DIR
)/%,$(call qstrip
,$(CONFIG_TOOLCHAIN_LIB_PATH
)))
139 ifneq ($(TOOLCHAIN_BIN_DIRS
),)
140 TARGET_PATH
:=$(subst $(space
),:,$(TOOLCHAIN_BIN_DIRS
)):$(TARGET_PATH
)
142 ifneq ($(TOOLCHAIN_INC_DIRS
),)
143 TARGET_CPPFLAGS
+= $(patsubst %,-I
%,$(TOOLCHAIN_INC_DIRS
))
145 ifneq ($(TOOLCHAIN_LIB_DIRS
),)
146 TARGET_LDFLAGS
+= $(patsubst %,-L
%,$(TOOLCHAIN_LIB_DIRS
))
151 TARGET_PATH_PKG
:=$(STAGING_DIR
)/host
/bin
:$(TARGET_PATH
)
153 ifeq ($(CONFIG_SOFT_FLOAT
),y
)
154 SOFT_FLOAT_CONFIG_OPTION
:=--with-float
=soft
155 TARGET_CFLAGS
+= -msoft-float
157 SOFT_FLOAT_CONFIG_OPTION
:=
160 export PATH
:=$(TARGET_PATH
)
162 export GCC_HONOUR_COPTS
:=0
163 export SH_FUNC
:=.
$(INCLUDE_DIR
)/shell.sh
;
165 PKG_CONFIG
:=$(STAGING_DIR_HOST
)/bin
/pkg-config
170 HOST_CFLAGS
:=-O2
-I
$(STAGING_DIR_HOST
)/include
171 HOST_LDFLAGS
:=-L
$(STAGING_DIR_HOST
)/lib
173 TARGET_CC
:=$(TARGET_CROSS
)gcc
174 TARGET_CXX
:=$(if
$(CONFIG_INSTALL_LIBSTDCPP
),$(TARGET_CROSS
)g
++,no
)
175 KPATCH
:=$(SCRIPT_DIR
)/patch-kernel.sh
176 SED
:=$(STAGING_DIR_HOST
)/bin
/sed
-i
-e
180 INSTALL_BIN
:=install -m0755
181 INSTALL_DIR
:=install -d
-m0755
182 INSTALL_DATA
:=install -m0644
183 INSTALL_CONF
:=install -m0600
185 ifneq ($(CONFIG_CCACHE
),)
186 # FIXME: move this variable to a better location
187 export CCACHE_DIR
=$(STAGING_DIR
)/ccache
188 TARGET_CC
:= ccache
$(TARGET_CC
)
189 TARGET_CXX
:= ccache
$(TARGET_CXX
)
192 TARGET_CONFIGURE_OPTS
= \
193 AR
=$(TARGET_CROSS
)ar \
194 AS
="$(TARGET_CC) -c $(TARGET_CFLAGS)" \
195 LD
=$(TARGET_CROSS
)ld \
196 NM
=$(TARGET_CROSS
)nm \
199 CXX
="$(TARGET_CXX)" \
200 RANLIB
=$(TARGET_CROSS
)ranlib \
201 STRIP
=$(TARGET_CROSS
)strip \
202 OBJCOPY
=$(TARGET_CROSS
)objcopy \
203 OBJDUMP
=$(TARGET_CROSS
)objdump \
204 SIZE
=$(TARGET_CROSS
)size
206 # strip an entire directory
207 ifneq ($(CONFIG_NO_STRIP
),)
211 ifneq ($(CONFIG_USE_STRIP
),)
212 STRIP
:=$(TARGET_CROSS
)strip $(call qstrip
,$(CONFIG_STRIP_ARGS
))
214 ifneq ($(CONFIG_USE_SSTRIP
),)
215 STRIP
:=$(STAGING_DIR_HOST
)/bin
/sstrip
219 NM
="$(TARGET_CROSS)nm" \
221 STRIP_KMOD
="$(TARGET_CROSS)strip --strip-unneeded --remove-section=.comment --remove-section=.pdr --remove-section=.mdebug.abi32" \
222 $(SCRIPT_DIR
)/rstrip.sh
225 ifeq ($(CONFIG_ENABLE_LOCALE
),true
)
226 DISABLE_NLS
:=--enable-nls
228 DISABLE_NLS
:=--disable-nls
231 ifeq ($(CONFIG_IPV6
),y
)
234 DISABLE_IPV6
:=--disable-ipv6
237 ifeq ($(CONFIG_TAR_VERBOSITY
),y
)
244 V_
$(subst .
,_
,$(subst -,_
,$(subst /,_
,$(1))))
248 $(call shvar
,$(1))=$$(call
$(1))
249 export $(call shvar
,$(1))
253 $(eval
-include $(if
$(DUMP
),,$(STAGING_DIR
)/mk
/$(strip $(1))))
256 # Execute commands under flock
257 # $(1) => The shell expression.
258 # $(2) => The lock name. If not given, the global lock will be used.
261 $(STAGING_DIR_HOST
)/bin
/flock \
262 $(TMP_DIR
)/.
$(if
$(2),$(strip $(2)),global
).flock \
263 -c
'$(subst ','\'',$(1))'
267 ext=$(word $(words $(subst ., ,$(1))),$(subst ., ,$(1)))
274 @$(if $(filter undefined,$(origin $*)),\
275 echo "$* undefined" >&2, \
276 echo '$(subst ','"'"',$($*))' \
280 @
$(if
$(filter undefined
,$(origin $*)),\
281 echo
"$* undefined" >&2, \
282 echo
"$*='"'$(subst ','"'\"'\"'"',$($*))'"'" \