diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-07-20 20:57:21 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-07-20 20:57:21 +0000 |
commit | 344914c955b9df3b0ab453c2959260230544f7af (patch) | |
tree | d24e388be5a79e6efa2aea914d1f7d6b81016539 /toolchain/gcc/initial/Makefile | |
parent | 0474d29e5e7d175370d3e485a58c6e06aeba6f7e (diff) |
gcc: split up the build process into three distinct stages (minimal, initial, final), to clean up the dependency handling nastiness and to improve support for rebuilding parts of the toolchain
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22319 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'toolchain/gcc/initial/Makefile')
-rw-r--r-- | toolchain/gcc/initial/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/toolchain/gcc/initial/Makefile b/toolchain/gcc/initial/Makefile new file mode 100644 index 000000000..8cc6b3be1 --- /dev/null +++ b/toolchain/gcc/initial/Makefile @@ -0,0 +1,32 @@ +GCC_VARIANT:=initial + +include ../common.mk + +GCC_CONFIGURE += \ + --with-newlib \ + --with-sysroot=$(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev \ + --enable-languages=c \ + --disable-shared \ + --disable-threads \ + +define Host/Compile + $(CP) $(BUILD_DIR_TOOLCHAIN)/linux-dev/* $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/ + $(GCC_MAKE) -C $(GCC_BUILD_DIR) \ + all-build-libiberty \ + all-gcc \ + $(if $(GCC_BUILD_TARGET_LIBGCC),all-target-libgcc) +endef + +define Host/Install + $(GCC_MAKE) -C $(GCC_BUILD_DIR) \ + install-gcc \ + $(if $(GCC_BUILD_TARGET_LIBGCC),install-target-libgcc) + + # XXX: glibc insists on linking against libgcc_eh + ( cd $(TOOLCHAIN_DIR)/usr/lib/gcc/$(REAL_GNU_TARGET_NAME)/$(PKG_VERSION) ; \ + [ -e libgcc_eh.a ] || ln -sf libgcc.a libgcc_eh.a ; \ + cp libgcc.a libgcc_initial.a; \ + ) +endef + +$(eval $(call HostBuild)) |