2006-06-27 03:44:04 +03:00
|
|
|
#
|
2009-09-23 05:27:38 +03:00
|
|
|
# Copyright (C) 2007-2009 OpenWrt.org
|
2006-06-27 03:44:04 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-06 05:34:52 +02:00
|
|
|
# Main makefile for the toolchain
|
2006-06-27 03:44:04 +03:00
|
|
|
#
|
2009-01-08 03:49:11 +02:00
|
|
|
# Steps:
|
|
|
|
# 1) toolchain/binutils/install
|
|
|
|
# build & install binutils
|
|
|
|
# 2) toolchain/gcc/prepare
|
|
|
|
# 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/prepare
|
|
|
|
# build & install libc headers & support files, needed for step 5
|
|
|
|
# 5) toolchain/gcc/compile
|
|
|
|
# build & install an initial gcc, needed for step 6
|
|
|
|
# 6) toolchain/libc/compile
|
|
|
|
# build & install the final libc
|
|
|
|
# 7) toolchain/gcc/install
|
|
|
|
# build & install the final gcc
|
|
|
|
# 8) toolchain/libc/install
|
|
|
|
# build & install libc utilities
|
|
|
|
#
|
|
|
|
|
2007-07-30 18:00:27 +03:00
|
|
|
curdir:=toolchain
|
2006-09-27 17:06:46 +03:00
|
|
|
|
2007-07-28 16:29:03 +03:00
|
|
|
# subdirectories to descend into
|
2012-01-18 05:08:09 +02:00
|
|
|
$(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) $(if $(CONFIG_GLIBC_PORTS),glibc-ports))
|
2009-01-08 03:49:11 +02:00
|
|
|
$(curdir)/builddirs-compile:=$($(curdir)/builddirs-prepare)
|
2007-07-31 00:57:14 +03:00
|
|
|
$(curdir)/builddirs-install:=$($(curdir)/builddirs-compile)
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2007-07-28 16:29:03 +03:00
|
|
|
# builddir dependencies
|
2009-09-23 05:27:38 +03:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
|
|
|
$(curdir)/$(LIBC)/prepare:=$(curdir)/kernel-headers/install
|
2010-07-20 23:57:21 +03:00
|
|
|
$(curdir)/gcc/minimal/compile:=$(curdir)/binutils/install
|
|
|
|
$(curdir)/kernel-headers/install:=$(curdir)/gcc/minimal/install
|
|
|
|
$(curdir)/gcc/initial/compile:=$(curdir)/$(LIBC)/prepare
|
2011-01-12 17:44:53 +02:00
|
|
|
$(curdir)/gcc/initial/prepare:=$(curdir)/gcc/minimal/prepare
|
|
|
|
$(curdir)/gcc/final/prepare:=$(curdir)/gcc/initial/prepare
|
2010-07-20 23:57:21 +03:00
|
|
|
$(curdir)/$(LIBC)/compile:=$(curdir)/gcc/initial/install
|
|
|
|
$(curdir)/gcc/final/compile:=$(curdir)/$(LIBC)/compile
|
|
|
|
$(curdir)/$(LIBC)/install:=$(curdir)/gcc/final/install
|
2009-01-08 03:49:11 +02:00
|
|
|
ifneq ($(CONFIG_GLIBC_PORTS),)
|
|
|
|
$(curdir)/glibc/prepare:=$(curdir)/glibc-ports/prepare
|
|
|
|
endif
|
2006-08-10 22:25:26 +03:00
|
|
|
endif
|
2007-08-07 03:04:25 +03:00
|
|
|
|
2009-10-10 22:25:48 +03:00
|
|
|
ifdef CONFIG_GCC_VERSION_LLVM
|
|
|
|
$(curdir)/builddirs += llvm
|
2010-07-20 23:57:21 +03:00
|
|
|
$(curdir)/gcc/minimal/compile += $(curdir)/llvm/install
|
2009-10-10 22:25:48 +03:00
|
|
|
endif
|
|
|
|
|
2010-09-01 20:51:36 +03:00
|
|
|
ifndef DUMP_TARGET_DB
|
2008-06-15 17:34:00 +03:00
|
|
|
ifneq ($(ARCH),)
|
|
|
|
$(TOOLCHAIN_DIR)/info.mk: .config
|
2007-08-07 03:04:25 +03:00
|
|
|
@for dir in $(TOOLCHAIN_DIR); do ( \
|
2011-04-04 03:54:37 +03:00
|
|
|
$(if $(QUIET),,set -x;) \
|
2007-08-07 03:04:25 +03:00
|
|
|
mkdir -p "$$dir"; \
|
|
|
|
cd "$$dir"; \
|
2011-11-28 21:19:33 +02:00
|
|
|
ln -sf lib lib64; \
|
2009-01-08 03:49:11 +02:00
|
|
|
mkdir -p stamp lib usr/include usr/lib ; \
|
2007-08-07 03:04:25 +03:00
|
|
|
); done
|
|
|
|
@grep GCC_VERSION $@ >/dev/null 2>&1 || $(INSTALL_DATA) $(TOPDIR)/toolchain/info.mk $@
|
|
|
|
@touch $@
|
2008-06-15 17:34:00 +03:00
|
|
|
endif
|
2010-09-01 20:51:36 +03:00
|
|
|
endif
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2007-07-28 16:29:03 +03:00
|
|
|
# prerequisites for the individual targets
|
2007-07-31 00:14:08 +03:00
|
|
|
$(curdir)/ := .config prereq
|
2007-08-07 03:04:25 +03:00
|
|
|
$(curdir)//prepare = $(STAGING_DIR)/.prepared $(TOOLCHAIN_DIR)/info.mk
|
2007-07-28 16:44:04 +03:00
|
|
|
$(curdir)//compile = $(1)/prepare
|
|
|
|
$(curdir)//install = $(1)/compile
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2010-09-01 20:51:36 +03:00
|
|
|
ifndef DUMP_TARGET_DB
|
2007-09-08 22:55:42 +03:00
|
|
|
$(TOOLCHAIN_DIR)/stamp/.gcc-initial_installed:
|
2010-09-01 20:51:36 +03:00
|
|
|
endif
|
2007-09-08 22:55:42 +03:00
|
|
|
|
2009-07-11 15:48:59 +03:00
|
|
|
$(eval $(call stampfile,$(curdir),toolchain,install,$(TOOLCHAIN_DIR)/stamp/.gcc-initial_installed,,$(TOOLCHAIN_DIR)))
|
2007-07-28 16:44:04 +03:00
|
|
|
$(eval $(call subdir,$(curdir)))
|
2007-04-18 20:35:46 +03:00
|
|
|
|