2008-09-13 22:34:43 +08:00
|
|
|
#
|
2010-03-06 04:26:14 +08:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-06-27 08:35:46 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
ifneq ($(__rules_inc),1)
|
|
|
|
__rules_inc=1
|
|
|
|
|
2007-06-27 04:24:55 +08:00
|
|
|
ifeq ($(DUMP),)
|
|
|
|
-include $(TOPDIR)/.config
|
|
|
|
endif
|
2007-08-31 05:12:39 +08:00
|
|
|
include $(TOPDIR)/include/debug.mk
|
2006-06-24 05:47:24 +08:00
|
|
|
include $(TOPDIR)/include/verbose.mk
|
2005-10-19 21:32:59 +08:00
|
|
|
|
2013-07-18 19:18:37 +08:00
|
|
|
export TMP_DIR:=$(TOPDIR)/tmp
|
2007-08-07 08:04:25 +08:00
|
|
|
|
2009-03-03 22:55:53 +08:00
|
|
|
qstrip=$(strip $(subst ",,$(1)))
|
2007-08-07 08:04:25 +08:00
|
|
|
#"))
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2008-06-09 23:38:45 +08:00
|
|
|
empty:=
|
|
|
|
space:= $(empty) $(empty)
|
2014-10-22 16:57:16 +08:00
|
|
|
comma:=,
|
2008-06-09 23:38:45 +08:00
|
|
|
merge=$(subst $(space),,$(1))
|
|
|
|
confvar=$(call merge,$(foreach v,$(1),$(if $($(v)),y,n)))
|
2008-08-01 07:55:39 +08:00
|
|
|
strip_last=$(patsubst %.$(lastword $(subst .,$(space),$(1))),%,$(1))
|
2008-06-09 23:38:45 +08:00
|
|
|
|
2010-12-14 03:04:33 +08:00
|
|
|
define sep
|
|
|
|
|
2015-03-16 03:47:46 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
define newline
|
|
|
|
|
|
|
|
|
2010-12-14 03:04:33 +08:00
|
|
|
endef
|
|
|
|
|
2008-08-17 00:59:47 +08:00
|
|
|
_SINGLE=export MAKEFLAGS=$(space);
|
2009-03-14 11:17:06 +08:00
|
|
|
CFLAGS:=
|
2009-03-03 22:55:53 +08:00
|
|
|
ARCH:=$(subst i486,i386,$(subst i586,i386,$(subst i686,i386,$(call qstrip,$(CONFIG_ARCH)))))
|
2010-09-13 04:49:54 +08:00
|
|
|
ARCH_PACKAGES:=$(call qstrip,$(CONFIG_TARGET_ARCH_PACKAGES))
|
2007-09-09 03:55:42 +08:00
|
|
|
BOARD:=$(call qstrip,$(CONFIG_TARGET_BOARD))
|
2007-08-07 08:04:25 +08:00
|
|
|
TARGET_OPTIMIZATION:=$(call qstrip,$(CONFIG_TARGET_OPTIMIZATION))
|
2013-07-29 17:38:29 +08:00
|
|
|
export EXTRA_OPTIMIZATION:=$(call qstrip,$(CONFIG_EXTRA_OPTIMIZATION))
|
2009-01-18 04:36:38 +08:00
|
|
|
TARGET_SUFFIX=$(call qstrip,$(CONFIG_TARGET_SUFFIX))
|
2007-08-07 08:04:25 +08:00
|
|
|
BUILD_SUFFIX:=$(call qstrip,$(CONFIG_BUILD_SUFFIX))
|
2007-08-31 05:12:39 +08:00
|
|
|
SUBDIR:=$(patsubst $(TOPDIR)/%,%,${CURDIR})
|
2010-08-19 21:32:47 +08:00
|
|
|
export SHELL:=/usr/bin/env bash
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2009-03-03 22:55:53 +08:00
|
|
|
OPTIMIZE_FOR_CPU=$(subst i386,i486,$(ARCH))
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2008-08-07 06:10:20 +08:00
|
|
|
ifeq ($(ARCH),powerpc)
|
|
|
|
FPIC:=-fPIC
|
|
|
|
else
|
|
|
|
FPIC:=-fpic
|
|
|
|
endif
|
|
|
|
|
2010-10-24 04:30:43 +08:00
|
|
|
HOST_FPIC:=-fPIC
|
|
|
|
|
2013-09-27 01:53:32 +08:00
|
|
|
ARCH_SUFFIX:=$(call qstrip,$(CONFIG_CPU_TYPE))
|
2011-02-26 00:52:25 +08:00
|
|
|
GCC_ARCH:=
|
|
|
|
|
2013-09-27 01:53:32 +08:00
|
|
|
ifneq ($(ARCH_SUFFIX),)
|
|
|
|
ARCH_SUFFIX:=_$(ARCH_SUFFIX)
|
|
|
|
endif
|
2011-02-26 00:52:25 +08:00
|
|
|
ifneq ($(filter -march=armv%,$(TARGET_OPTIMIZATION)),)
|
|
|
|
GCC_ARCH:=$(patsubst -march=%,%,$(filter -march=armv%,$(TARGET_OPTIMIZATION)))
|
|
|
|
endif
|
2011-01-16 09:25:06 +08:00
|
|
|
ifdef CONFIG_HAS_SPE_FPU
|
|
|
|
TARGET_SUFFIX:=$(TARGET_SUFFIX)spe
|
|
|
|
endif
|
2013-04-05 20:36:23 +08:00
|
|
|
ifdef CONFIG_MIPS64_ABI
|
|
|
|
ifneq ($(CONFIG_MIPS64_ABI_O32),y)
|
2013-07-10 22:51:09 +08:00
|
|
|
ARCH_SUFFIX:=$(ARCH_SUFFIX)_$(call qstrip,$(CONFIG_MIPS64_ABI))
|
2013-04-05 20:36:23 +08:00
|
|
|
endif
|
|
|
|
endif
|
2010-03-15 02:24:05 +08:00
|
|
|
|
2007-10-30 06:05:23 +08:00
|
|
|
DL_DIR:=$(if $(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(call qstrip,$(CONFIG_DOWNLOAD_FOLDER)),$(TOPDIR)/dl)
|
2013-11-22 17:39:41 +08:00
|
|
|
BIN_DIR:=$(if $(call qstrip,$(CONFIG_BINARY_FOLDER)),$(call qstrip,$(CONFIG_BINARY_FOLDER)),$(TOPDIR)/bin/$(BOARD))
|
2006-06-21 10:32:39 +08:00
|
|
|
INCLUDE_DIR:=$(TOPDIR)/include
|
2006-06-23 06:33:56 +08:00
|
|
|
SCRIPT_DIR:=$(TOPDIR)/scripts
|
2007-08-07 08:04:25 +08:00
|
|
|
BUILD_DIR_BASE:=$(TOPDIR)/build_dir
|
|
|
|
BUILD_DIR_HOST:=$(BUILD_DIR_BASE)/host
|
|
|
|
STAGING_DIR_HOST:=$(TOPDIR)/staging_dir/host
|
2009-09-23 10:27:38 +08:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|
|
|
GCCV:=$(call qstrip,$(CONFIG_GCC_VERSION))
|
|
|
|
LIBC:=$(call qstrip,$(CONFIG_LIBC))
|
|
|
|
LIBCV:=$(call qstrip,$(CONFIG_LIBC_VERSION))
|
|
|
|
REAL_GNU_TARGET_NAME=$(OPTIMIZE_FOR_CPU)-openwrt-linux$(if $(TARGET_SUFFIX),-$(TARGET_SUFFIX))
|
|
|
|
GNU_TARGET_NAME=$(OPTIMIZE_FOR_CPU)-openwrt-linux
|
2011-03-07 20:59:19 +08:00
|
|
|
DIR_SUFFIX:=_$(LIBC)-$(LIBCV)$(if $(CONFIG_arm),_eabi)
|
2015-06-16 07:05:08 +08:00
|
|
|
BIN_DIR:=$(BIN_DIR)$(if $(CONFIG_USE_MUSL),,-$(LIBC))
|
2014-03-10 19:12:32 +08:00
|
|
|
TARGET_DIR_NAME = target-$(ARCH)$(ARCH_SUFFIX)$(DIR_SUFFIX)$(if $(BUILD_SUFFIX),_$(BUILD_SUFFIX))
|
|
|
|
TOOLCHAIN_DIR_NAME = toolchain-$(ARCH)$(ARCH_SUFFIX)_gcc-$(GCCV)$(DIR_SUFFIX)
|
2009-09-23 10:27:38 +08:00
|
|
|
else
|
|
|
|
ifeq ($(CONFIG_NATIVE_TOOLCHAIN),)
|
|
|
|
GNU_TARGET_NAME=$(call qstrip,$(CONFIG_TARGET_NAME))
|
|
|
|
else
|
|
|
|
GNU_TARGET_NAME=$(shell gcc -dumpmachine)
|
|
|
|
endif
|
|
|
|
REAL_GNU_TARGET_NAME=$(GNU_TARGET_NAME)
|
2014-03-10 19:12:32 +08:00
|
|
|
TARGET_DIR_NAME:=target-$(GNU_TARGET_NAME)$(if $(BUILD_SUFFIX),_$(BUILD_SUFFIX))
|
|
|
|
TOOLCHAIN_DIR_NAME:=toolchain-$(GNU_TARGET_NAME)
|
2009-09-23 10:27:38 +08:00
|
|
|
endif
|
2014-03-10 19:12:32 +08:00
|
|
|
|
|
|
|
PACKAGE_DIR:=$(BIN_DIR)/packages
|
|
|
|
BUILD_DIR:=$(BUILD_DIR_BASE)/$(TARGET_DIR_NAME)
|
|
|
|
STAGING_DIR:=$(TOPDIR)/staging_dir/$(TARGET_DIR_NAME)
|
|
|
|
BUILD_DIR_TOOLCHAIN:=$(BUILD_DIR_BASE)/$(TOOLCHAIN_DIR_NAME)
|
|
|
|
TOOLCHAIN_DIR:=$(TOPDIR)/staging_dir/$(TOOLCHAIN_DIR_NAME)
|
2005-03-06 11:34:52 +08:00
|
|
|
STAMP_DIR:=$(BUILD_DIR)/stamp
|
2007-08-07 08:04:25 +08:00
|
|
|
STAMP_DIR_HOST=$(BUILD_DIR_HOST)/stamp
|
2009-02-20 18:44:19 +08:00
|
|
|
TARGET_ROOTFS_DIR?=$(if $(call qstrip,$(CONFIG_TARGET_ROOTFS_DIR)),$(call qstrip,$(CONFIG_TARGET_ROOTFS_DIR)),$(BUILD_DIR))
|
|
|
|
TARGET_DIR:=$(TARGET_ROOTFS_DIR)/root-$(BOARD)
|
2009-08-08 05:58:35 +08:00
|
|
|
STAGING_DIR_ROOT:=$(STAGING_DIR)/root-$(BOARD)
|
2009-05-29 00:30:04 +08:00
|
|
|
BUILD_LOG_DIR:=$(TOPDIR)/logs
|
2012-10-07 00:01:06 +08:00
|
|
|
PKG_INFO_DIR := $(STAGING_DIR)/pkginfo
|
2006-06-23 06:33:56 +08:00
|
|
|
|
2015-02-10 23:49:36 +08:00
|
|
|
TARGET_PATH:=$(subst $(space),:,$(filter-out .,$(filter-out ./,$(subst :,$(space),$(PATH)))))
|
2013-07-29 17:38:29 +08:00
|
|
|
TARGET_CFLAGS:=$(TARGET_OPTIMIZATION)$(if $(CONFIG_DEBUG), -g3) $(EXTRA_OPTIMIZATION)
|
2012-03-01 18:39:46 +08:00
|
|
|
TARGET_CXXFLAGS = $(TARGET_CFLAGS)
|
2013-08-14 21:02:29 +08:00
|
|
|
TARGET_ASFLAGS_DEFAULT = $(TARGET_CFLAGS)
|
|
|
|
TARGET_ASFLAGS = $(TARGET_ASFLAGS_DEFAULT)
|
2008-07-20 00:29:01 +08:00
|
|
|
TARGET_CPPFLAGS:=-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include
|
2009-09-23 10:27:38 +08:00
|
|
|
TARGET_LDFLAGS:=-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib
|
2011-04-12 00:06:46 +08:00
|
|
|
ifneq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|
|
|
LIBGCC_S_PATH=$(realpath $(wildcard $(call qstrip,$(CONFIG_LIBGCC_ROOT_DIR))/$(call qstrip,$(CONFIG_LIBGCC_FILE_SPEC))))
|
|
|
|
LIBGCC_S=$(if $(LIBGCC_S_PATH),-L$(dir $(LIBGCC_S_PATH)) -lgcc_s)
|
2013-01-14 04:59:51 +08:00
|
|
|
LIBGCC_A=$(realpath $(lastword $(wildcard $(dir $(LIBGCC_S_PATH))/gcc/*/*/libgcc.a)))
|
2011-04-12 00:06:46 +08:00
|
|
|
else
|
2013-01-14 04:59:51 +08:00
|
|
|
LIBGCC_A=$(lastword $(wildcard $(TOOLCHAIN_DIR)/lib/gcc/*/*/libgcc.a))
|
2011-09-06 03:29:22 +08:00
|
|
|
LIBGCC_S=$(if $(wildcard $(TOOLCHAIN_DIR)/lib/libgcc_s.so),-L$(TOOLCHAIN_DIR)/lib -lgcc_s,$(LIBGCC_A))
|
2011-04-12 00:06:46 +08:00
|
|
|
endif
|
2011-02-13 09:45:07 +08:00
|
|
|
LIBRPC=-lrpc
|
2012-06-08 23:10:18 +08:00
|
|
|
LIBRPC_DEPENDS=+librpc
|
2008-07-20 00:29:01 +08:00
|
|
|
|
2013-04-05 20:36:19 +08:00
|
|
|
ifeq ($(CONFIG_ARCH_64BIT),y)
|
2012-08-10 22:15:06 +08:00
|
|
|
LIB_SUFFIX:=64
|
|
|
|
endif
|
|
|
|
|
2009-03-03 21:54:29 +08:00
|
|
|
ifndef DUMP
|
2009-09-23 10:27:38 +08:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|
|
|
-include $(TOOLCHAIN_DIR)/info.mk
|
2011-07-25 18:32:38 +08:00
|
|
|
export GCC_HONOUR_COPTS:=0
|
2009-09-23 10:27:38 +08:00
|
|
|
TARGET_CROSS:=$(if $(TARGET_CROSS),$(TARGET_CROSS),$(OPTIMIZE_FOR_CPU)-openwrt-linux$(if $(TARGET_SUFFIX),-$(TARGET_SUFFIX))-)
|
2012-02-16 03:19:12 +08:00
|
|
|
TARGET_CFLAGS+= -fhonour-copts $(if $(CONFIG_GCC_VERSION_4_4)$(CONFIG_GCC_VERSION_4_5),,-Wno-error=unused-but-set-variable)
|
2015-06-23 22:38:03 +08:00
|
|
|
TARGET_CPPFLAGS+= -I$(TOOLCHAIN_DIR)/usr/include -I$(TOOLCHAIN_DIR)/include/fortify -I$(TOOLCHAIN_DIR)/include
|
2009-09-23 10:27:38 +08:00
|
|
|
TARGET_LDFLAGS+= -L$(TOOLCHAIN_DIR)/usr/lib -L$(TOOLCHAIN_DIR)/lib
|
2010-08-19 20:49:51 +08:00
|
|
|
TARGET_PATH:=$(TOOLCHAIN_DIR)/bin:$(TARGET_PATH)
|
2009-09-23 10:27:38 +08:00
|
|
|
else
|
|
|
|
ifeq ($(CONFIG_NATIVE_TOOLCHAIN),)
|
|
|
|
TARGET_CROSS:=$(call qstrip,$(CONFIG_TOOLCHAIN_PREFIX))
|
|
|
|
TOOLCHAIN_ROOT_DIR:=$(call qstrip,$(CONFIG_TOOLCHAIN_ROOT))
|
|
|
|
TOOLCHAIN_BIN_DIRS:=$(patsubst ./%,$(TOOLCHAIN_ROOT_DIR)/%,$(call qstrip,$(CONFIG_TOOLCHAIN_BIN_PATH)))
|
|
|
|
TOOLCHAIN_INC_DIRS:=$(patsubst ./%,$(TOOLCHAIN_ROOT_DIR)/%,$(call qstrip,$(CONFIG_TOOLCHAIN_INC_PATH)))
|
|
|
|
TOOLCHAIN_LIB_DIRS:=$(patsubst ./%,$(TOOLCHAIN_ROOT_DIR)/%,$(call qstrip,$(CONFIG_TOOLCHAIN_LIB_PATH)))
|
|
|
|
ifneq ($(TOOLCHAIN_BIN_DIRS),)
|
|
|
|
TARGET_PATH:=$(subst $(space),:,$(TOOLCHAIN_BIN_DIRS)):$(TARGET_PATH)
|
|
|
|
endif
|
|
|
|
ifneq ($(TOOLCHAIN_INC_DIRS),)
|
|
|
|
TARGET_CPPFLAGS+= $(patsubst %,-I%,$(TOOLCHAIN_INC_DIRS))
|
|
|
|
endif
|
|
|
|
ifneq ($(TOOLCHAIN_LIB_DIRS),)
|
|
|
|
TARGET_LDFLAGS+= $(patsubst %,-L%,$(TOOLCHAIN_LIB_DIRS))
|
|
|
|
endif
|
2012-01-18 11:08:09 +08:00
|
|
|
TARGET_PATH:=$(TOOLCHAIN_DIR)/bin:$(TARGET_PATH)
|
2009-09-23 10:27:38 +08:00
|
|
|
endif
|
|
|
|
endif
|
2009-03-03 21:54:29 +08:00
|
|
|
endif
|
2009-09-23 10:27:38 +08:00
|
|
|
TARGET_PATH_PKG:=$(STAGING_DIR)/host/bin:$(TARGET_PATH)
|
2006-08-11 03:25:26 +08:00
|
|
|
|
2007-12-29 02:06:47 +08:00
|
|
|
ifeq ($(CONFIG_SOFT_FLOAT),y)
|
2009-01-30 04:19:00 +08:00
|
|
|
SOFT_FLOAT_CONFIG_OPTION:=--with-float=soft
|
2013-11-29 18:59:51 +08:00
|
|
|
ifeq ($(CONFIG_arm),y)
|
|
|
|
TARGET_CFLAGS+= -mfloat-abi=soft
|
|
|
|
else
|
|
|
|
TARGET_CFLAGS+= -msoft-float
|
|
|
|
endif
|
2007-12-29 02:06:47 +08:00
|
|
|
else
|
2009-01-30 04:19:00 +08:00
|
|
|
SOFT_FLOAT_CONFIG_OPTION:=
|
2013-11-29 18:59:51 +08:00
|
|
|
ifeq ($(CONFIG_arm),y)
|
|
|
|
TARGET_CFLAGS+= -mfloat-abi=hard
|
|
|
|
endif
|
2007-12-29 02:06:47 +08:00
|
|
|
endif
|
|
|
|
|
2006-08-04 19:59:52 +08:00
|
|
|
export PATH:=$(TARGET_PATH)
|
2007-10-07 03:13:07 +08:00
|
|
|
export STAGING_DIR
|
2010-08-19 20:49:37 +08:00
|
|
|
export SH_FUNC:=. $(INCLUDE_DIR)/shell.sh;
|
2006-08-04 19:59:52 +08:00
|
|
|
|
2007-10-21 03:13:53 +08:00
|
|
|
PKG_CONFIG:=$(STAGING_DIR_HOST)/bin/pkg-config
|
|
|
|
|
|
|
|
export PKG_CONFIG
|
|
|
|
|
2006-06-23 06:33:56 +08:00
|
|
|
HOSTCC:=gcc
|
2013-03-22 20:52:17 +08:00
|
|
|
HOSTCXX:=g++
|
2014-10-20 14:29:21 +08:00
|
|
|
HOST_CPPFLAGS:=-I$(STAGING_DIR_HOST)/include -I$(STAGING_DIR_HOST)/usr/include
|
2012-09-10 05:35:42 +08:00
|
|
|
HOST_CFLAGS:=-O2 $(HOST_CPPFLAGS)
|
2014-10-20 14:29:21 +08:00
|
|
|
HOST_LDFLAGS:=-L$(STAGING_DIR_HOST)/lib -L$(STAGING_DIR_HOST)/usr/lib
|
2007-08-07 08:04:25 +08:00
|
|
|
|
2015-01-11 00:14:25 +08:00
|
|
|
ifeq ($(CONFIG_GCC_VERSION_4_4)$(CONFIG_GCC_VERSION_4_6)$(CONFIG_EXTERNAL_TOOLCHAIN),)
|
build: use gcc-provided ar, nm and ranlib where appropriate
Since GCC 4.7, GCC provides its own wrappers around ar, nm and ranlib, which
should be used for builds with link-time optimization. Since GCC 4.9, using them
actually necessary for LTO builds using convenience libraries to succeed.
There are some packages which try to automatically detect if gcc-{ar,nm,ranlib}
exist (one example is my package "fastd" in the package repository, which tries
to use LTO). This breaks because the OpenWrt build system explicitly sets the
binutils versions of these tools.
As it doesn't cause any issues to use gcc-{ar,nm,ranlib} instead of
{ar,nm,ranlib} even without LTO, this patch just makes OpenWrt use the
GCC-provided versions by default, which fixes the build of such packages with
GCC 4.9.
(I know that builds fail though when clang is used with -flto and
gcc-{ar,nm,ranlib}, but as all OpenWrt toolchains are based on GCC, this isn't
a real issue.)
Completely cleaning the tree (or at least `make clean toolchain/clean`) is
necessary to get a consistent state after the binutils plugins support patch and
this one (as trying to use gcc-{ar,nm,ranlib} with a binutils built without
plugin support will definitely lead to a build failure).
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 43784
2014-12-27 20:59:59 +08:00
|
|
|
TARGET_AR:=$(TARGET_CROSS)gcc-ar
|
|
|
|
TARGET_RANLIB:=$(TARGET_CROSS)gcc-ranlib
|
|
|
|
TARGET_NM:=$(TARGET_CROSS)gcc-nm
|
|
|
|
else
|
|
|
|
TARGET_AR:=$(TARGET_CROSS)ar
|
|
|
|
TARGET_RANLIB:=$(TARGET_CROSS)ranlib
|
|
|
|
TARGET_NM:=$(TARGET_CROSS)nm
|
|
|
|
endif
|
|
|
|
|
2015-04-07 03:39:51 +08:00
|
|
|
BUILD_KEY=$(TOPDIR)/key-build
|
|
|
|
|
2006-06-23 06:33:56 +08:00
|
|
|
TARGET_CC:=$(TARGET_CROSS)gcc
|
2013-05-10 04:50:49 +08:00
|
|
|
TARGET_CXX:=$(TARGET_CROSS)g++
|
2010-10-07 19:32:09 +08:00
|
|
|
KPATCH:=$(SCRIPT_DIR)/patch-kernel.sh
|
2007-08-07 08:04:25 +08:00
|
|
|
SED:=$(STAGING_DIR_HOST)/bin/sed -i -e
|
2006-06-23 06:33:56 +08:00
|
|
|
CP:=cp -fpR
|
2010-03-06 04:26:14 +08:00
|
|
|
LN:=ln -sf
|
2013-07-10 23:11:29 +08:00
|
|
|
XARGS:=xargs -r
|
2005-03-06 11:34:52 +08:00
|
|
|
|
2015-02-06 20:35:36 +08:00
|
|
|
BASH:=bash
|
|
|
|
TAR:=tar
|
|
|
|
FIND:=find
|
|
|
|
PATCH:=patch
|
|
|
|
PYTHON:=python
|
2015-02-06 00:57:18 +08:00
|
|
|
|
2006-11-23 07:05:54 +08:00
|
|
|
INSTALL_BIN:=install -m0755
|
|
|
|
INSTALL_DIR:=install -d -m0755
|
|
|
|
INSTALL_DATA:=install -m0644
|
2006-12-31 23:54:59 +08:00
|
|
|
INSTALL_CONF:=install -m0600
|
2006-11-23 07:05:54 +08:00
|
|
|
|
2012-07-29 05:06:59 +08:00
|
|
|
TARGET_CC_NOCACHE:=$(TARGET_CC)
|
|
|
|
TARGET_CXX_NOCACHE:=$(TARGET_CXX)
|
|
|
|
HOSTCC_NOCACHE:=$(HOSTCC)
|
2013-03-22 20:52:17 +08:00
|
|
|
HOSTCXX_NOCACHE:=$(HOSTCXX)
|
2012-07-29 05:06:59 +08:00
|
|
|
export TARGET_CC_NOCACHE
|
|
|
|
export TARGET_CXX_NOCACHE
|
|
|
|
export HOSTCC_NOCACHE
|
|
|
|
|
2006-08-04 14:56:10 +08:00
|
|
|
ifneq ($(CONFIG_CCACHE),)
|
2012-06-06 21:27:11 +08:00
|
|
|
TARGET_CC:= ccache_cc
|
|
|
|
TARGET_CXX:= ccache_cxx
|
2012-01-15 19:43:13 +08:00
|
|
|
HOSTCC:= ccache $(HOSTCC)
|
2013-03-22 20:52:17 +08:00
|
|
|
HOSTCXX:= ccache $(HOSTCXX)
|
2006-08-04 14:56:10 +08:00
|
|
|
endif
|
|
|
|
|
2010-03-29 08:05:48 +08:00
|
|
|
TARGET_CONFIGURE_OPTS = \
|
build: use gcc-provided ar, nm and ranlib where appropriate
Since GCC 4.7, GCC provides its own wrappers around ar, nm and ranlib, which
should be used for builds with link-time optimization. Since GCC 4.9, using them
actually necessary for LTO builds using convenience libraries to succeed.
There are some packages which try to automatically detect if gcc-{ar,nm,ranlib}
exist (one example is my package "fastd" in the package repository, which tries
to use LTO). This breaks because the OpenWrt build system explicitly sets the
binutils versions of these tools.
As it doesn't cause any issues to use gcc-{ar,nm,ranlib} instead of
{ar,nm,ranlib} even without LTO, this patch just makes OpenWrt use the
GCC-provided versions by default, which fixes the build of such packages with
GCC 4.9.
(I know that builds fail though when clang is used with -flto and
gcc-{ar,nm,ranlib}, but as all OpenWrt toolchains are based on GCC, this isn't
a real issue.)
Completely cleaning the tree (or at least `make clean toolchain/clean`) is
necessary to get a consistent state after the binutils plugins support patch and
this one (as trying to use gcc-{ar,nm,ranlib} with a binutils built without
plugin support will definitely lead to a build failure).
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 43784
2014-12-27 20:59:59 +08:00
|
|
|
AR="$(TARGET_AR)" \
|
2013-04-05 20:35:53 +08:00
|
|
|
AS="$(TARGET_CC) -c $(TARGET_ASFLAGS)" \
|
2006-06-23 06:33:56 +08:00
|
|
|
LD=$(TARGET_CROSS)ld \
|
build: use gcc-provided ar, nm and ranlib where appropriate
Since GCC 4.7, GCC provides its own wrappers around ar, nm and ranlib, which
should be used for builds with link-time optimization. Since GCC 4.9, using them
actually necessary for LTO builds using convenience libraries to succeed.
There are some packages which try to automatically detect if gcc-{ar,nm,ranlib}
exist (one example is my package "fastd" in the package repository, which tries
to use LTO). This breaks because the OpenWrt build system explicitly sets the
binutils versions of these tools.
As it doesn't cause any issues to use gcc-{ar,nm,ranlib} instead of
{ar,nm,ranlib} even without LTO, this patch just makes OpenWrt use the
GCC-provided versions by default, which fixes the build of such packages with
GCC 4.9.
(I know that builds fail though when clang is used with -flto and
gcc-{ar,nm,ranlib}, but as all OpenWrt toolchains are based on GCC, this isn't
a real issue.)
Completely cleaning the tree (or at least `make clean toolchain/clean`) is
necessary to get a consistent state after the binutils plugins support patch and
this one (as trying to use gcc-{ar,nm,ranlib} with a binutils built without
plugin support will definitely lead to a build failure).
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 43784
2014-12-27 20:59:59 +08:00
|
|
|
NM="$(TARGET_NM)" \
|
2006-08-04 14:56:10 +08:00
|
|
|
CC="$(TARGET_CC)" \
|
|
|
|
GCC="$(TARGET_CC)" \
|
2008-09-02 02:35:03 +08:00
|
|
|
CXX="$(TARGET_CXX)" \
|
build: use gcc-provided ar, nm and ranlib where appropriate
Since GCC 4.7, GCC provides its own wrappers around ar, nm and ranlib, which
should be used for builds with link-time optimization. Since GCC 4.9, using them
actually necessary for LTO builds using convenience libraries to succeed.
There are some packages which try to automatically detect if gcc-{ar,nm,ranlib}
exist (one example is my package "fastd" in the package repository, which tries
to use LTO). This breaks because the OpenWrt build system explicitly sets the
binutils versions of these tools.
As it doesn't cause any issues to use gcc-{ar,nm,ranlib} instead of
{ar,nm,ranlib} even without LTO, this patch just makes OpenWrt use the
GCC-provided versions by default, which fixes the build of such packages with
GCC 4.9.
(I know that builds fail though when clang is used with -flto and
gcc-{ar,nm,ranlib}, but as all OpenWrt toolchains are based on GCC, this isn't
a real issue.)
Completely cleaning the tree (or at least `make clean toolchain/clean`) is
necessary to get a consistent state after the binutils plugins support patch and
this one (as trying to use gcc-{ar,nm,ranlib} with a binutils built without
plugin support will definitely lead to a build failure).
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 43784
2014-12-27 20:59:59 +08:00
|
|
|
RANLIB="$(TARGET_RANLIB)" \
|
2007-01-01 08:03:09 +08:00
|
|
|
STRIP=$(TARGET_CROSS)strip \
|
2007-03-23 02:07:01 +08:00
|
|
|
OBJCOPY=$(TARGET_CROSS)objcopy \
|
2007-09-03 13:50:05 +08:00
|
|
|
OBJDUMP=$(TARGET_CROSS)objdump \
|
|
|
|
SIZE=$(TARGET_CROSS)size
|
2006-06-23 06:33:56 +08:00
|
|
|
|
|
|
|
# strip an entire directory
|
2008-09-13 16:31:15 +08:00
|
|
|
ifneq ($(CONFIG_NO_STRIP),)
|
2008-06-10 15:18:41 +08:00
|
|
|
RSTRIP:=:
|
2009-07-07 10:34:58 +08:00
|
|
|
STRIP:=:
|
2008-06-10 15:18:41 +08:00
|
|
|
else
|
2009-07-07 10:34:58 +08:00
|
|
|
ifneq ($(CONFIG_USE_STRIP),)
|
2010-01-22 16:12:20 +08:00
|
|
|
STRIP:=$(TARGET_CROSS)strip $(call qstrip,$(CONFIG_STRIP_ARGS))
|
2009-07-07 10:34:58 +08:00
|
|
|
else
|
|
|
|
ifneq ($(CONFIG_USE_SSTRIP),)
|
|
|
|
STRIP:=$(STAGING_DIR_HOST)/bin/sstrip
|
|
|
|
endif
|
|
|
|
endif
|
2008-06-10 15:18:41 +08:00
|
|
|
RSTRIP:= \
|
2012-03-01 23:13:26 +08:00
|
|
|
export CROSS="$(TARGET_CROSS)" \
|
|
|
|
$(if $(CONFIG_KERNEL_KALLSYMS),NO_RENAME=1) \
|
|
|
|
$(if $(CONFIG_KERNEL_PROFILING),KEEP_SYMBOLS=1); \
|
2008-06-10 15:18:41 +08:00
|
|
|
NM="$(TARGET_CROSS)nm" \
|
|
|
|
STRIP="$(STRIP)" \
|
2012-02-21 01:38:26 +08:00
|
|
|
STRIP_KMOD="$(SCRIPT_DIR)/strip-kmod.sh" \
|
2015-02-10 23:48:48 +08:00
|
|
|
PATCHELF="$(STAGING_DIR_HOST)/bin/patchelf" \
|
2008-06-10 15:18:41 +08:00
|
|
|
$(SCRIPT_DIR)/rstrip.sh
|
|
|
|
endif
|
2006-06-23 06:33:56 +08:00
|
|
|
|
2009-07-26 05:45:51 +08:00
|
|
|
ifeq ($(CONFIG_IPV6),y)
|
2009-08-01 20:12:48 +08:00
|
|
|
DISABLE_IPV6:=
|
2009-07-26 05:45:51 +08:00
|
|
|
else
|
|
|
|
DISABLE_IPV6:=--disable-ipv6
|
|
|
|
endif
|
|
|
|
|
2014-03-23 03:52:48 +08:00
|
|
|
TAR_OPTIONS:=-xf -
|
|
|
|
|
2011-07-04 01:37:31 +08:00
|
|
|
ifeq ($(CONFIG_BUILD_LOG),y)
|
|
|
|
BUILD_LOG:=1
|
|
|
|
endif
|
|
|
|
|
2014-08-26 20:15:50 +08:00
|
|
|
export BISON_PKGDATADIR:=$(STAGING_DIR_HOST)/share/bison
|
|
|
|
export M4:=$(STAGING_DIR_HOST)/bin/m4
|
|
|
|
|
2006-11-12 07:11:02 +08:00
|
|
|
define shvar
|
|
|
|
V_$(subst .,_,$(subst -,_,$(subst /,_,$(1))))
|
|
|
|
endef
|
|
|
|
|
|
|
|
define shexport
|
2014-10-22 16:57:20 +08:00
|
|
|
export $(call shvar,$(1))=$$(call $(1))
|
2006-11-12 07:11:02 +08:00
|
|
|
endef
|
|
|
|
|
2010-02-25 07:07:56 +08:00
|
|
|
define include_mk
|
|
|
|
$(eval -include $(if $(DUMP),,$(STAGING_DIR)/mk/$(strip $(1))))
|
|
|
|
endef
|
|
|
|
|
2010-10-29 22:53:16 +08:00
|
|
|
# Execute commands under flock
|
|
|
|
# $(1) => The shell expression.
|
|
|
|
# $(2) => The lock name. If not given, the global lock will be used.
|
|
|
|
define locked
|
2010-10-31 23:33:48 +08:00
|
|
|
SHELL= \
|
|
|
|
$(STAGING_DIR_HOST)/bin/flock \
|
|
|
|
$(TMP_DIR)/.$(if $(2),$(strip $(2)),global).flock \
|
|
|
|
-c '$(subst ','\'',$(1))'
|
2010-10-29 22:53:16 +08:00
|
|
|
endef
|
|
|
|
|
2012-12-02 20:20:34 +08:00
|
|
|
# Recursively copy paths into another directory, purge dangling
|
|
|
|
# symlinks before.
|
|
|
|
# $(1) => File glob expression
|
|
|
|
# $(2) => Destination directory
|
|
|
|
define file_copy
|
|
|
|
for src_dir in $(sort $(foreach d,$(wildcard $(1)),$(dir $(d)))); do \
|
|
|
|
( cd $$src_dir; find -type f -or -type d ) | \
|
|
|
|
( cd $(2); while :; do \
|
|
|
|
read FILE; \
|
|
|
|
[ -z "$$FILE" ] && break; \
|
|
|
|
[ -L "$$FILE" ] || continue; \
|
|
|
|
echo "Removing symlink $(2)/$$FILE"; \
|
|
|
|
rm -f "$$FILE"; \
|
|
|
|
done; ); \
|
|
|
|
done; \
|
2012-12-02 23:15:07 +08:00
|
|
|
$(CP) $(1) $(2)
|
2012-12-02 20:20:34 +08:00
|
|
|
endef
|
|
|
|
|
2007-09-29 08:05:48 +08:00
|
|
|
# file extension
|
|
|
|
ext=$(word $(words $(subst ., ,$(1))),$(subst ., ,$(1)))
|
|
|
|
|
2006-05-14 18:25:38 +08:00
|
|
|
all:
|
2006-06-23 06:33:56 +08:00
|
|
|
FORCE: ;
|
2006-05-14 18:25:38 +08:00
|
|
|
.PHONY: FORCE
|
2007-09-09 03:55:42 +08:00
|
|
|
|
2010-10-11 06:40:44 +08:00
|
|
|
val.%:
|
|
|
|
@$(if $(filter undefined,$(origin $*)),\
|
|
|
|
echo "$* undefined" >&2, \
|
|
|
|
echo '$(subst ','"'"',$($*))' \
|
|
|
|
)
|
|
|
|
|
|
|
|
var.%:
|
|
|
|
@$(if $(filter undefined,$(origin $*)),\
|
|
|
|
echo "$* undefined" >&2, \
|
|
|
|
echo "$*='"'$(subst ','"'\"'\"'"',$($*))'"'" \
|
|
|
|
)
|
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
endif #__rules_inc
|