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))
31 _SINGLE
=export MAKEFLAGS
=$(space
);
33 ARCH
:=$(subst i486
,i386
,$(subst i586
,i386
,$(subst i686
,i386
,$(call qstrip
,$(CONFIG_ARCH
)))))
34 BOARD
:=$(call qstrip
,$(CONFIG_TARGET_BOARD
))
35 TARGET_OPTIMIZATION
:=$(call qstrip
,$(CONFIG_TARGET_OPTIMIZATION
))
36 TARGET_SUFFIX
=$(call qstrip
,$(CONFIG_TARGET_SUFFIX
))
37 BUILD_SUFFIX
:=$(call qstrip
,$(CONFIG_BUILD_SUFFIX
))
38 SUBDIR
:=$(patsubst $(TOPDIR
)/%,%,${CURDIR})
40 OPTIMIZE_FOR_CPU
=$(subst i386
,i486
,$(ARCH
))
42 ifeq ($(ARCH
),powerpc
)
49 ifneq ($(findstring -mips32r2
,$(TARGET_OPTIMIZATION
)),)
52 ifneq ($(findstring -march
=armv4
,$(TARGET_OPTIMIZATION
)),)
55 ifneq ($(findstring -march
=armv4t
,$(TARGET_OPTIMIZATION
)),)
58 ifneq ($(findstring -march
=armv5t
,$(TARGET_OPTIMIZATION
)),)
61 ifneq ($(findstring -march
=armv5te
,$(TARGET_OPTIMIZATION
)),)
65 DL_DIR
:=$(if
$(call qstrip
,$(CONFIG_DOWNLOAD_FOLDER
)),$(call qstrip
,$(CONFIG_DOWNLOAD_FOLDER
)),$(TOPDIR
)/dl
)
66 BIN_DIR
:=$(TOPDIR
)/bin
/$(BOARD
)
67 INCLUDE_DIR
:=$(TOPDIR
)/include
68 SCRIPT_DIR
:=$(TOPDIR
)/scripts
69 BUILD_DIR_BASE
:=$(TOPDIR
)/build_dir
70 BUILD_DIR_HOST
:=$(BUILD_DIR_BASE
)/host
71 STAGING_DIR_HOST
:=$(TOPDIR
)/staging_dir
/host
72 ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN
),)
73 GCCV
:=$(call qstrip
,$(CONFIG_GCC_VERSION
))
74 LIBC
:=$(call qstrip
,$(CONFIG_LIBC
))
75 LIBCV
:=$(call qstrip
,$(CONFIG_LIBC_VERSION
))
76 REAL_GNU_TARGET_NAME
=$(OPTIMIZE_FOR_CPU
)-openwrt-linux
$(if
$(TARGET_SUFFIX
),-$(TARGET_SUFFIX
))
77 GNU_TARGET_NAME
=$(OPTIMIZE_FOR_CPU
)-openwrt-linux
78 DIR_SUFFIX
:=_
$(LIBC
)-$(LIBCV
)$(if
$(CONFIG_EABI_SUPPORT
),_eabi
)
79 BUILD_DIR
:=$(BUILD_DIR_BASE
)/target-
$(ARCH
)$(ARCH_SUFFIX
)$(DIR_SUFFIX
)$(if
$(BUILD_SUFFIX
),_
$(BUILD_SUFFIX
))
80 STAGING_DIR
:=$(TOPDIR
)/staging_dir
/target-
$(ARCH
)$(ARCH_SUFFIX
)$(DIR_SUFFIX
)
81 BUILD_DIR_TOOLCHAIN
:=$(BUILD_DIR_BASE
)/toolchain-
$(ARCH
)$(ARCH_SUFFIX
)_gcc-
$(GCCV
)$(DIR_SUFFIX
)
82 TOOLCHAIN_DIR
:=$(TOPDIR
)/staging_dir
/toolchain-
$(ARCH
)$(ARCH_SUFFIX
)_gcc-
$(GCCV
)$(DIR_SUFFIX
)
83 PACKAGE_DIR
:=$(BIN_DIR
)/packages
85 ifeq ($(CONFIG_NATIVE_TOOLCHAIN
),)
86 GNU_TARGET_NAME
=$(call qstrip
,$(CONFIG_TARGET_NAME
))
88 GNU_TARGET_NAME
=$(shell gcc
-dumpmachine
)
90 REAL_GNU_TARGET_NAME
=$(GNU_TARGET_NAME
)
91 BUILD_DIR
:=$(BUILD_DIR_BASE
)/target-
$(GNU_TARGET_NAME
)$(if
$(BUILD_SUFFIX
),_
$(BUILD_SUFFIX
))
92 STAGING_DIR
:=$(TOPDIR
)/staging_dir
/target-
$(GNU_TARGET_NAME
)
93 BUILD_DIR_TOOLCHAIN
:=$(BUILD_DIR_BASE
)/toolchain-
$(GNU_TARGET_NAME
)
94 TOOLCHAIN_DIR
:=$(TOPDIR
)/staging_dir
/toolchain-
$(GNU_TARGET_NAME
)
95 PACKAGE_DIR
:=$(BIN_DIR
)/packages
97 STAMP_DIR
:=$(BUILD_DIR
)/stamp
98 STAMP_DIR_HOST
=$(BUILD_DIR_HOST
)/stamp
99 TARGET_ROOTFS_DIR?
=$(if
$(call qstrip
,$(CONFIG_TARGET_ROOTFS_DIR
)),$(call qstrip
,$(CONFIG_TARGET_ROOTFS_DIR
)),$(BUILD_DIR
))
100 TARGET_DIR
:=$(TARGET_ROOTFS_DIR
)/root-
$(BOARD
)
101 STAGING_DIR_ROOT
:=$(STAGING_DIR
)/root-
$(BOARD
)
102 BUILD_LOG_DIR
:=$(TOPDIR
)/logs
104 TARGET_PATH
:=$(STAGING_DIR_HOST
)/bin
:$(PATH
)
105 TARGET_CFLAGS
:=$(TARGET_OPTIMIZATION
)$(if
$(CONFIG_DEBUG
), -g3
)
106 TARGET_CPPFLAGS
:=-I
$(STAGING_DIR
)/usr
/include -I
$(STAGING_DIR
)/include
107 TARGET_LDFLAGS
:=-L
$(STAGING_DIR
)/usr
/lib
-L
$(STAGING_DIR
)/lib
108 LIBGCC_S
=$(if
$(wildcard $(TOOLCHAIN_DIR
)/lib
/libgcc_s.so
),-L
$(TOOLCHAIN_DIR
)/lib
-lgcc_s
,$(wildcard $(TOOLCHAIN_DIR
)/usr
/lib
/gcc
/*/*/libgcc.a
))
111 ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN
),)
112 -include $(TOOLCHAIN_DIR
)/info.mk
113 TARGET_CROSS
:=$(if
$(TARGET_CROSS
),$(TARGET_CROSS
),$(OPTIMIZE_FOR_CPU
)-openwrt-linux
$(if
$(TARGET_SUFFIX
),-$(TARGET_SUFFIX
))-)
114 TARGET_CFLAGS
+= -fhonour-copts
115 TARGET_CPPFLAGS
+= -I
$(TOOLCHAIN_DIR
)/usr
/include -I
$(TOOLCHAIN_DIR
)/include
116 TARGET_LDFLAGS
+= -L
$(TOOLCHAIN_DIR
)/usr
/lib
-L
$(TOOLCHAIN_DIR
)/lib
117 TARGET_PATH
:=$(TOOLCHAIN_DIR
)/usr
/bin
:$(TARGET_PATH
)
119 ifeq ($(CONFIG_NATIVE_TOOLCHAIN
),)
120 TARGET_CROSS
:=$(call qstrip
,$(CONFIG_TOOLCHAIN_PREFIX
))
121 TOOLCHAIN_ROOT_DIR
:=$(call qstrip
,$(CONFIG_TOOLCHAIN_ROOT
))
122 TOOLCHAIN_BIN_DIRS
:=$(patsubst .
/%,$(TOOLCHAIN_ROOT_DIR
)/%,$(call qstrip
,$(CONFIG_TOOLCHAIN_BIN_PATH
)))
123 TOOLCHAIN_INC_DIRS
:=$(patsubst .
/%,$(TOOLCHAIN_ROOT_DIR
)/%,$(call qstrip
,$(CONFIG_TOOLCHAIN_INC_PATH
)))
124 TOOLCHAIN_LIB_DIRS
:=$(patsubst .
/%,$(TOOLCHAIN_ROOT_DIR
)/%,$(call qstrip
,$(CONFIG_TOOLCHAIN_LIB_PATH
)))
125 ifneq ($(TOOLCHAIN_BIN_DIRS
),)
126 TARGET_PATH
:=$(subst $(space
),:,$(TOOLCHAIN_BIN_DIRS
)):$(TARGET_PATH
)
128 ifneq ($(TOOLCHAIN_INC_DIRS
),)
129 TARGET_CPPFLAGS
+= $(patsubst %,-I
%,$(TOOLCHAIN_INC_DIRS
))
131 ifneq ($(TOOLCHAIN_LIB_DIRS
),)
132 TARGET_LDFLAGS
+= $(patsubst %,-L
%,$(TOOLCHAIN_LIB_DIRS
))
137 TARGET_PATH_PKG
:=$(STAGING_DIR
)/host
/bin
:$(TARGET_PATH
)
139 ifeq ($(CONFIG_SOFT_FLOAT
),y
)
140 SOFT_FLOAT_CONFIG_OPTION
:=--with-float
=soft
141 TARGET_CFLAGS
+= -msoft-float
143 SOFT_FLOAT_CONFIG_OPTION
:=
146 export PATH
:=$(TARGET_PATH
)
148 export GCC_HONOUR_COPTS
:=0
149 export SH_FUNC
:=.
$(INCLUDE_DIR
)/shell.sh
;
151 PKG_CONFIG
:=$(STAGING_DIR_HOST
)/bin
/pkg-config
156 HOST_CFLAGS
:=-O2
-I
$(STAGING_DIR_HOST
)/include
157 HOST_LDFLAGS
:=-L
$(STAGING_DIR_HOST
)/lib
159 TARGET_CC
:=$(TARGET_CROSS
)gcc
160 TARGET_CXX
:=$(if
$(CONFIG_INSTALL_LIBSTDCPP
),$(TARGET_CROSS
)g
++,no
)
161 PATCH
:=$(SCRIPT_DIR
)/patch-kernel.sh
162 SED
:=$(STAGING_DIR_HOST
)/bin
/sed
-i
-e
166 INSTALL_BIN
:=install -m0755
167 INSTALL_DIR
:=install -d
-m0755
168 INSTALL_DATA
:=install -m0644
169 INSTALL_CONF
:=install -m0600
171 ifneq ($(CONFIG_CCACHE
),)
172 # FIXME: move this variable to a better location
173 export CCACHE_DIR
=$(STAGING_DIR
)/ccache
174 TARGET_CC
:= ccache
$(TARGET_CC
)
177 TARGET_CONFIGURE_OPTS
= \
178 AR
=$(TARGET_CROSS
)ar \
179 AS
="$(TARGET_CC) -c $(TARGET_CFLAGS)" \
180 LD
=$(TARGET_CROSS
)ld \
181 NM
=$(TARGET_CROSS
)nm \
184 CXX
="$(TARGET_CXX)" \
185 RANLIB
=$(TARGET_CROSS
)ranlib \
186 STRIP
=$(TARGET_CROSS
)strip \
187 OBJCOPY
=$(TARGET_CROSS
)objcopy \
188 OBJDUMP
=$(TARGET_CROSS
)objdump \
189 SIZE
=$(TARGET_CROSS
)size
191 # strip an entire directory
192 ifneq ($(CONFIG_NO_STRIP
),)
196 ifneq ($(CONFIG_USE_STRIP
),)
197 STRIP
:=$(TARGET_CROSS
)strip $(call qstrip
,$(CONFIG_STRIP_ARGS
))
199 ifneq ($(CONFIG_USE_SSTRIP
),)
200 STRIP
:=$(STAGING_DIR_HOST
)/bin
/sstrip
204 NM
="$(TARGET_CROSS)nm" \
206 STRIP_KMOD
="$(TARGET_CROSS)strip --strip-unneeded --remove-section=.comment --remove-section=.pdr --remove-section=.mdebug.abi32" \
207 $(SCRIPT_DIR
)/rstrip.sh
210 ifeq ($(CONFIG_ENABLE_LOCALE
),true
)
211 DISABLE_NLS
:=--enable-nls
213 DISABLE_NLS
:=--disable-nls
216 ifeq ($(CONFIG_IPV6
),y
)
219 DISABLE_IPV6
:=--disable-ipv6
222 ifeq ($(CONFIG_LARGEFILE
),y
)
225 DISABLE_LARGEFILE
:=--disable-largefile
228 ifeq ($(CONFIG_TAR_VERBOSITY
),y
)
235 V_
$(subst .
,_
,$(subst -,_
,$(subst /,_
,$(1))))
239 $(call shvar
,$(1))=$$(call
$(1))
240 export $(call shvar
,$(1))
244 $(eval
-include $(if
$(DUMP
),,$(STAGING_DIR
)/mk
/$(strip $(1))))
248 ext
=$(word $(words $(subst .
, ,$(1))),$(subst .
, ,$(1)))