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
19 export SHELL
=/usr
/bin
/env bash
-c
'. $(TOPDIR)/include/shell.sh; eval "$$2"' --
24 qstrip
=$(strip $(subst ",,$(1)))
28 space
:= $(empty
) $(empty
)
29 merge
=$(subst $(space
),,$(1))
30 confvar
=$(call merge
,$(foreach v
,$(1),$(if
$($(v
)),y
,n
)))
31 strip_last
=$(patsubst %.
$(lastword
$(subst .
,$(space
),$(1))),%,$(1))
33 _SINGLE
=export MAKEFLAGS
=$(space
);
35 ARCH
:=$(subst i486
,i386
,$(subst i586
,i386
,$(subst i686
,i386
,$(call qstrip
,$(CONFIG_ARCH
)))))
36 BOARD
:=$(call qstrip
,$(CONFIG_TARGET_BOARD
))
37 TARGET_OPTIMIZATION
:=$(call qstrip
,$(CONFIG_TARGET_OPTIMIZATION
))
38 TARGET_SUFFIX
=$(call qstrip
,$(CONFIG_TARGET_SUFFIX
))
39 BUILD_SUFFIX
:=$(call qstrip
,$(CONFIG_BUILD_SUFFIX
))
40 SUBDIR
:=$(patsubst $(TOPDIR
)/%,%,${CURDIR})
42 OPTIMIZE_FOR_CPU
=$(subst i386
,i486
,$(ARCH
))
44 ifeq ($(ARCH
),powerpc
)
51 ifneq ($(findstring -mips32r2
,$(TARGET_OPTIMIZATION
)),)
54 ifneq ($(findstring -march
=armv4
,$(TARGET_OPTIMIZATION
)),)
57 ifneq ($(findstring -march
=armv4t
,$(TARGET_OPTIMIZATION
)),)
60 ifneq ($(findstring -march
=armv5t
,$(TARGET_OPTIMIZATION
)),)
63 ifneq ($(findstring -march
=armv5te
,$(TARGET_OPTIMIZATION
)),)
67 DL_DIR
:=$(if
$(call qstrip
,$(CONFIG_DOWNLOAD_FOLDER
)),$(call qstrip
,$(CONFIG_DOWNLOAD_FOLDER
)),$(TOPDIR
)/dl
)
68 BIN_DIR
:=$(TOPDIR
)/bin
/$(BOARD
)
69 INCLUDE_DIR
:=$(TOPDIR
)/include
70 SCRIPT_DIR
:=$(TOPDIR
)/scripts
71 BUILD_DIR_BASE
:=$(TOPDIR
)/build_dir
72 BUILD_DIR_HOST
:=$(BUILD_DIR_BASE
)/host
73 STAGING_DIR_HOST
:=$(TOPDIR
)/staging_dir
/host
74 ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN
),)
75 GCCV
:=$(call qstrip
,$(CONFIG_GCC_VERSION
))
76 LIBC
:=$(call qstrip
,$(CONFIG_LIBC
))
77 LIBCV
:=$(call qstrip
,$(CONFIG_LIBC_VERSION
))
78 REAL_GNU_TARGET_NAME
=$(OPTIMIZE_FOR_CPU
)-openwrt-linux
$(if
$(TARGET_SUFFIX
),-$(TARGET_SUFFIX
))
79 GNU_TARGET_NAME
=$(OPTIMIZE_FOR_CPU
)-openwrt-linux
80 DIR_SUFFIX
:=_
$(LIBC
)-$(LIBCV
)$(if
$(CONFIG_EABI_SUPPORT
),_eabi
)
81 BUILD_DIR
:=$(BUILD_DIR_BASE
)/target-
$(ARCH
)$(ARCH_SUFFIX
)$(DIR_SUFFIX
)$(if
$(BUILD_SUFFIX
),_
$(BUILD_SUFFIX
))
82 STAGING_DIR
:=$(TOPDIR
)/staging_dir
/target-
$(ARCH
)$(ARCH_SUFFIX
)$(DIR_SUFFIX
)
83 BUILD_DIR_TOOLCHAIN
:=$(BUILD_DIR_BASE
)/toolchain-
$(ARCH
)$(ARCH_SUFFIX
)_gcc-
$(GCCV
)$(DIR_SUFFIX
)
84 TOOLCHAIN_DIR
:=$(TOPDIR
)/staging_dir
/toolchain-
$(ARCH
)$(ARCH_SUFFIX
)_gcc-
$(GCCV
)$(DIR_SUFFIX
)
85 PACKAGE_DIR
:=$(BIN_DIR
)/packages
87 ifeq ($(CONFIG_NATIVE_TOOLCHAIN
),)
88 GNU_TARGET_NAME
=$(call qstrip
,$(CONFIG_TARGET_NAME
))
90 GNU_TARGET_NAME
=$(shell gcc
-dumpmachine
)
92 REAL_GNU_TARGET_NAME
=$(GNU_TARGET_NAME
)
93 BUILD_DIR
:=$(BUILD_DIR_BASE
)/target-
$(GNU_TARGET_NAME
)$(if
$(BUILD_SUFFIX
),_
$(BUILD_SUFFIX
))
94 STAGING_DIR
:=$(TOPDIR
)/staging_dir
/target-
$(GNU_TARGET_NAME
)
95 BUILD_DIR_TOOLCHAIN
:=$(BUILD_DIR_BASE
)/toolchain-
$(GNU_TARGET_NAME
)
96 TOOLCHAIN_DIR
:=$(TOPDIR
)/staging_dir
/toolchain-
$(GNU_TARGET_NAME
)
97 PACKAGE_DIR
:=$(BIN_DIR
)/packages
99 STAMP_DIR
:=$(BUILD_DIR
)/stamp
100 STAMP_DIR_HOST
=$(BUILD_DIR_HOST
)/stamp
101 TARGET_ROOTFS_DIR?
=$(if
$(call qstrip
,$(CONFIG_TARGET_ROOTFS_DIR
)),$(call qstrip
,$(CONFIG_TARGET_ROOTFS_DIR
)),$(BUILD_DIR
))
102 TARGET_DIR
:=$(TARGET_ROOTFS_DIR
)/root-
$(BOARD
)
103 STAGING_DIR_ROOT
:=$(STAGING_DIR
)/root-
$(BOARD
)
104 BUILD_LOG_DIR
:=$(TOPDIR
)/logs
106 TARGET_PATH
:=$(STAGING_DIR_HOST
)/bin
:$(PATH
)
107 TARGET_CFLAGS
:=$(TARGET_OPTIMIZATION
)$(if
$(CONFIG_DEBUG
), -g3
)
108 TARGET_CPPFLAGS
:=-I
$(STAGING_DIR
)/usr
/include -I
$(STAGING_DIR
)/include
109 TARGET_LDFLAGS
:=-L
$(STAGING_DIR
)/usr
/lib
-L
$(STAGING_DIR
)/lib
110 LIBGCC_S
=$(if
$(wildcard $(TOOLCHAIN_DIR
)/lib
/libgcc_s.so
),-L
$(TOOLCHAIN_DIR
)/lib
-lgcc_s
,$(wildcard $(TOOLCHAIN_DIR
)/usr
/lib
/gcc
/*/*/libgcc.a
))
113 ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN
),)
114 -include $(TOOLCHAIN_DIR
)/info.mk
115 TARGET_CROSS
:=$(if
$(TARGET_CROSS
),$(TARGET_CROSS
),$(OPTIMIZE_FOR_CPU
)-openwrt-linux
$(if
$(TARGET_SUFFIX
),-$(TARGET_SUFFIX
))-)
116 TARGET_CFLAGS
+= -fhonour-copts
117 TARGET_CPPFLAGS
+= -I
$(TOOLCHAIN_DIR
)/usr
/include -I
$(TOOLCHAIN_DIR
)/include
118 TARGET_LDFLAGS
+= -L
$(TOOLCHAIN_DIR
)/usr
/lib
-L
$(TOOLCHAIN_DIR
)/lib
119 TARGET_PATH
:=$(TOOLCHAIN_DIR
)/usr
/bin
:$(TARGET_PATH
)
121 ifeq ($(CONFIG_NATIVE_TOOLCHAIN
),)
122 TARGET_CROSS
:=$(call qstrip
,$(CONFIG_TOOLCHAIN_PREFIX
))
123 TOOLCHAIN_ROOT_DIR
:=$(call qstrip
,$(CONFIG_TOOLCHAIN_ROOT
))
124 TOOLCHAIN_BIN_DIRS
:=$(patsubst .
/%,$(TOOLCHAIN_ROOT_DIR
)/%,$(call qstrip
,$(CONFIG_TOOLCHAIN_BIN_PATH
)))
125 TOOLCHAIN_INC_DIRS
:=$(patsubst .
/%,$(TOOLCHAIN_ROOT_DIR
)/%,$(call qstrip
,$(CONFIG_TOOLCHAIN_INC_PATH
)))
126 TOOLCHAIN_LIB_DIRS
:=$(patsubst .
/%,$(TOOLCHAIN_ROOT_DIR
)/%,$(call qstrip
,$(CONFIG_TOOLCHAIN_LIB_PATH
)))
127 ifneq ($(TOOLCHAIN_BIN_DIRS
),)
128 TARGET_PATH
:=$(subst $(space
),:,$(TOOLCHAIN_BIN_DIRS
)):$(TARGET_PATH
)
130 ifneq ($(TOOLCHAIN_INC_DIRS
),)
131 TARGET_CPPFLAGS
+= $(patsubst %,-I
%,$(TOOLCHAIN_INC_DIRS
))
133 ifneq ($(TOOLCHAIN_LIB_DIRS
),)
134 TARGET_LDFLAGS
+= $(patsubst %,-L
%,$(TOOLCHAIN_LIB_DIRS
))
139 TARGET_PATH_PKG
:=$(STAGING_DIR
)/host
/bin
:$(TARGET_PATH
)
141 ifeq ($(CONFIG_SOFT_FLOAT
),y
)
142 SOFT_FLOAT_CONFIG_OPTION
:=--with-float
=soft
143 TARGET_CFLAGS
+= -msoft-float
145 SOFT_FLOAT_CONFIG_OPTION
:=
148 export PATH
:=$(TARGET_PATH
)
150 export GCC_HONOUR_COPTS
:=0
152 PKG_CONFIG
:=$(STAGING_DIR_HOST
)/bin
/pkg-config
157 HOST_CFLAGS
:=-O2
-I
$(STAGING_DIR_HOST
)/include
158 HOST_LDFLAGS
:=-L
$(STAGING_DIR_HOST
)/lib
160 TARGET_CC
:=$(TARGET_CROSS
)gcc
161 TARGET_CXX
:=$(if
$(CONFIG_INSTALL_LIBSTDCPP
),$(TARGET_CROSS
)g
++,no
)
162 PATCH
:=$(SCRIPT_DIR
)/patch-kernel.sh
163 SED
:=$(STAGING_DIR_HOST
)/bin
/sed
-i
-e
167 INSTALL_BIN
:=install -m0755
168 INSTALL_DIR
:=install -d
-m0755
169 INSTALL_DATA
:=install -m0644
170 INSTALL_CONF
:=install -m0600
172 ifneq ($(CONFIG_CCACHE
),)
173 # FIXME: move this variable to a better location
174 export CCACHE_DIR
=$(STAGING_DIR
)/ccache
175 TARGET_CC
:= ccache
$(TARGET_CC
)
178 TARGET_CONFIGURE_OPTS
= \
179 AR
=$(TARGET_CROSS
)ar \
180 AS
="$(TARGET_CC) -c $(TARGET_CFLAGS)" \
181 LD
=$(TARGET_CROSS
)ld \
182 NM
=$(TARGET_CROSS
)nm \
185 CXX
="$(TARGET_CXX)" \
186 RANLIB
=$(TARGET_CROSS
)ranlib \
187 STRIP
=$(TARGET_CROSS
)strip \
188 OBJCOPY
=$(TARGET_CROSS
)objcopy \
189 OBJDUMP
=$(TARGET_CROSS
)objdump \
190 SIZE
=$(TARGET_CROSS
)size
192 # strip an entire directory
193 ifneq ($(CONFIG_NO_STRIP
),)
197 ifneq ($(CONFIG_USE_STRIP
),)
198 STRIP
:=$(TARGET_CROSS
)strip $(call qstrip
,$(CONFIG_STRIP_ARGS
))
200 ifneq ($(CONFIG_USE_SSTRIP
),)
201 STRIP
:=$(STAGING_DIR_HOST
)/bin
/sstrip
205 NM
="$(TARGET_CROSS)nm" \
207 STRIP_KMOD
="$(TARGET_CROSS)strip --strip-unneeded --remove-section=.comment --remove-section=.pdr --remove-section=.mdebug.abi32" \
208 $(SCRIPT_DIR
)/rstrip.sh
211 ifeq ($(CONFIG_ENABLE_LOCALE
),true
)
212 DISABLE_NLS
:=--enable-nls
214 DISABLE_NLS
:=--disable-nls
217 ifeq ($(CONFIG_IPV6
),y
)
220 DISABLE_IPV6
:=--disable-ipv6
223 ifeq ($(CONFIG_LARGEFILE
),y
)
226 DISABLE_LARGEFILE
:=--disable-largefile
229 ifeq ($(CONFIG_TAR_VERBOSITY
),y
)
236 V_
$(subst .
,_
,$(subst -,_
,$(subst /,_
,$(1))))
240 $(call shvar
,$(1))=$$(call
$(1))
241 export $(call shvar
,$(1))
245 $(eval
-include $(if
$(DUMP
),,$(STAGING_DIR
)/mk
/$(strip $(1))))
249 ext
=$(word $(words $(subst .
, ,$(1))),$(subst .
, ,$(1)))