aboutsummaryrefslogtreecommitdiffstats
path: root/toolchain/Makefile
blob: cd5399e041a2d973390a1eeb45b21b57f814148e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# 
# Copyright (C) 2007-2009 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# Main makefile for the toolchain
#
# Steps:
# 1) toolchain/binutils/install
#    build & install binutils
# 2) toolchain/gcc/minimal/install
#    build & install a minimal gcc, needed for steps 3 & 4
# 3) toolchain/kernel-headers/install
#    install kernel headers, needed for step 4
# 4) toolchain/libc/headers/install
#    build & install libc headers & support files, needed for step 5
# 5) toolchain/gcc/initial/install
#    build & install an initial gcc, needed for step 6
# 6) toolchain/libc/install
#    build & install the final libc
# 7) toolchain/gcc/final/install
#    build & install the final gcc
# 8) toolchain/libc/utils/install
#    build & install libc utilities
#

curdir:=toolchain

# subdirectories to descend into
$(curdir)/builddirs := $(if $(CONFIG_GDB),gdb) $(if $(CONFIG_INSIGHT),insight) $(if $(CONFIG_EXTERNAL_TOOLCHAIN),wrapper,kernel-headers binutils gcc/minimal gcc/initial gcc/final $(LIBC)/headers $(LIBC) fortify-headers)
ifdef CONFIG_USE_UCLIBC
  $(curdir)/builddirs += $(LIBC)/utils
endif
$(curdir)/builddirs-compile:=$($(curdir)/builddirs-prepare)
$(curdir)/builddirs-install:=$($(curdir)/builddirs-compile)

# builddir dependencies
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
  $(curdir)/gcc/minimal/compile:=$(curdir)/binutils/install
  $(curdir)/kernel-headers/install:=$(curdir)/gcc/minimal/install
  $(curdir)/gcc/initial/prepare:=$(curdir)/gcc/minimal/prepare
  $(curdir)/gcc/final/prepare:=$(curdir)/gcc/initial/prepare

  $(curdir)/$(LIBC)/headers/compile:=$(curdir)/kernel-headers/install
  $(curdir)/gcc/initial/compile:=$(curdir)/$(LIBC)/headers/install
  $(curdir)/$(LIBC)/compile:=$(curdir)/gcc/initial/install
  $(curdir)/gcc/final/compile:=$(curdir)/$(LIBC)/install
  $(curdir)/$(LIBC)/utils/compile:=$(curdir)/gcc/final/install
  $(curdir)/$(LIBC)/prepare:=$(curdir)/$(LIBC)/headers/prepare
  $(curdir)/$(LIBC)/utils/prepare:=$(curdir)/$(LIBC)/headers/prepare
endif

ifndef DUMP_TARGET_DB
ifneq ($(ARCH),)
  $(TOOLCHAIN_DIR)/info.mk: .config
	@for dir in $(TOOLCHAIN_DIR); do ( \
		$(if $(QUIET),,set -x;) \
		mkdir -p "$$dir"; \
		cd "$$dir"; \
		ln -nsf lib lib64; \
		ln -nsf lib lib32; \
		mkdir -p stamp lib usr/include usr/lib ; \
	); done
	@grep GCC_VERSION $@ >/dev/null 2>&1 || $(INSTALL_DATA) $(TOPDIR)/toolchain/info.mk $@
	@touch $@
endif
endif

# prerequisites for the individual targets
$(curdir)/ := .config prereq
$(curdir)//prepare = $(STAGING_DIR)/.prepared $(TOOLCHAIN_DIR)/info.mk $(tools/stamp-install)
$(curdir)//compile = $(1)/prepare
$(curdir)//install = $(1)/compile

ifndef DUMP_TARGET_DB
$(TOOLCHAIN_DIR)/stamp/.gcc-initial_installed:
endif

$(eval $(call stampfile,$(curdir),toolchain,install,$(TOOLCHAIN_DIR)/stamp/.gcc-initial_installed,,$(TOOLCHAIN_DIR)))
$(eval $(call subdir,$(curdir)))
s2">" \ BUILD_DIR="$BUILD_DIR" \ BUILD_DIR_HOST="$BUILD_DIR_HOST" \ KERNEL_BUILD_DIR="$KERNEL_BUILD_DIR" \ BIN_DIR="$BIN_DIR" \ STAGING_DIR="$STAGING_DIR" \ STAGING_DIR_HOST="$STAGING_DIR_HOST" \ FORCE_HOST_INSTALL=1 \ V=99 "$@" >"$LOG_DIR/$logfile" 2>&1 } clean_kernel_build_dir() { # delete everything, except the kernel build dir "linux-X.X.X" ( cd "$KERNEL_BUILD_DIR" || die "Failed to enter kernel build dir" for entry in *; do [ -z "$(echo "$entry" | egrep -e '^linux-*.*.*$')" ] || continue rm -rf "$entry" || die "Failed to clean kernel build dir" done ) } stamp_exists() # $1=stamp { [ -e "$1" -o -L "$1" ] } test_package() # $1=pkgname { local pkg="$1" [ -n "$pkg" -a -z "$(echo "$pkg" | grep -e '/')" -a "$pkg" != "." -a "$pkg" != ".." ] || \ die "Package name \"$pkg\" contains illegal characters" local SELECTED= for conf in `grep CONFIG_PACKAGE tmp/.packagedeps | grep -E "[ /]$pkg\$" | sed -e 's,package-$(\(CONFIG_PACKAGE_.*\)).*,\1,'`; do grep "$conf=" .config > /dev/null && SELECTED=1 && break done local STAMP_SUCCESS="$STAMP_DIR_SUCCESS/$pkg" local STAMP_FAILED="$STAMP_DIR_FAILED/$pkg" local STAMP_BLACKLIST="$STAMP_DIR_BLACKLIST/$pkg" rm -f "$STAMP_FAILED" stamp_exists "$STAMP_SUCCESS" && [ $force -eq 0 ] && return rm -f "$STAMP_SUCCESS" [ -n "$SELECTED" ] || { echo "Package $pkg is not selected" return } stamp_exists "$STAMP_BLACKLIST" && [ $force -eq 0 ] && { echo "Package $pkg is blacklisted" return } echo "Testing package $pkg..." rm -rf "$STAGING_DIR" "$STAGING_DIR_HOST" mkdir -p "$STAGING_DIR" cp -al "$STAGING_DIR_HOST_TMPL" "$STAGING_DIR_HOST" [ $lean_test -eq 0 ] && { rm -rf "$BUILD_DIR" "$BUILD_DIR_HOST" clean_kernel_build_dir } mkdir -p "$BUILD_DIR" "$BUILD_DIR_HOST" local logfile="$(basename $pkg).log" deptest_make "package/$pkg/compile" "$logfile" if [ $? -eq 0 ]; then ( cd "$STAMP_DIR_SUCCESS"; ln -s "../$LOG_DIR_NAME/$logfile" "./$pkg" ) else ( cd "$STAMP_DIR_FAILED"; ln -s "../$LOG_DIR_NAME/$logfile" "./$pkg" ) echo "Building package $pkg FAILED" fi } # parse commandline options packages= lean_test=0 force=0 nrjobs=1 while [ $# -ne 0 ]; do case "$1" in --help|-h) usage exit 0 ;; --lean) lean_test=1 ;; --force) force=1 ;; -j*) if [ -n "${1:2}" ]; then nrjobs="${1:2}" else shift nrjobs="$1" fi ;; *) packages="$packages $1" ;; esac shift done [ -f "$BASEDIR/include/toplevel.mk" ] || \ die "Error: Could not find buildsystem base directory" [ -f "$BASEDIR/.config" ] || \ die "The buildsystem is not configured. Please run make menuconfig." cd "$BASEDIR" || die "Failed to enter base directory" mkdir -p "$STAMP_DIR_SUCCESS" "$STAMP_DIR_FAILED" "$STAMP_DIR_BLACKLIST" \ "$BIN_DIR" "$LOG_DIR" bootstrap_deptest_make() { local target="$1" shift local logfile="bootstrap-deptest-$(echo "$target" | tr / -).log" echo "deptest-make $target" deptest_make "$target" "$logfile" "$@" || \ die "make $target failed, please check $logfile" } bootstrap_native_make() { local target="$1" shift local logfile="bootstrap-native-$(echo "$target" | tr / -).log" echo "make $target" make -j$nrjobs "$target" \ V=99 "$@" >"$LOG_DIR/$logfile" 2>&1 || \ die "make $target failed, please check $logfile" } [ -d "$STAGING_DIR_HOST_TMPL" ] || { echo "Bootstrapping build environment..." rm -rf "$STAGING_DIR" "$STAGING_DIR_HOST" "$BUILD_DIR" "$BUILD_DIR_HOST" "$KERNEL_BUILD_DIR" mkdir -p "$STAGING_DIR" "$STAGING_DIR_HOST" \ "$BUILD_DIR" "$BUILD_DIR_HOST" "$KERNEL_BUILD_DIR" bootstrap_native_make tools/install bootstrap_native_make toolchain/install bootstrap_deptest_make tools/install bootstrap_deptest_make target/linux/install cp -al "$STAGING_DIR_HOST" "$STAGING_DIR_HOST_TMPL" rm -rf "$STAGING_DIR" "$STAGING_DIR_HOST" "$BUILD_DIR" "$BUILD_DIR_HOST" echo "Build environment OK." } if [ -z "$packages" ]; then # iterate over all packages for pkg in `cat tmp/.packagedeps | grep CONFIG_PACKAGE | grep -v curdir | sed -e 's,.*[/=]\s*,,' | sort -u`; do test_package "$pkg" done else # only check the specified packages for pkg in $packages; do test_package "$pkg" done fi