diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-07-03 14:23:32 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-07-03 14:23:32 +0000 |
commit | 5d19a38d8008411f06b8beb265d94890690f562b (patch) | |
tree | e1a15ed27522ba51c4219d68461c71ba699347bd /toolchain/eglibc/headers | |
parent | f1a1d0a2624900df6729ba5281093af6d0cbf8b3 (diff) | |
download | upstream-5d19a38d8008411f06b8beb265d94890690f562b.tar.gz upstream-5d19a38d8008411f06b8beb265d94890690f562b.tar.bz2 upstream-5d19a38d8008411f06b8beb265d94890690f562b.zip |
toolchain: sync eglibc headers/build split with uclibc changes
SVN-Revision: 32584
Diffstat (limited to 'toolchain/eglibc/headers')
-rw-r--r-- | toolchain/eglibc/headers/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/toolchain/eglibc/headers/Makefile b/toolchain/eglibc/headers/Makefile new file mode 100644 index 0000000000..69495c9bde --- /dev/null +++ b/toolchain/eglibc/headers/Makefile @@ -0,0 +1,26 @@ +PATH_PREFIX:=.. +VARIANT:=headers + +include ../common.mk + +define Host/Compile + +endef + +define Host/Install + $(call Host/SetToolchainInfo) + mkdir -p $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/{include,lib} + $(MAKE) -C $(CUR_BUILD_DIR) \ + install_root="$(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev" \ + install-bootstrap-headers=yes \ + install-headers + $(MAKE) -C $(CUR_BUILD_DIR) \ + csu/subdir_lib + ( cd $(CUR_BUILD_DIR); \ + $(CP) csu/crt1.o csu/crti.o csu/crtn.o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/lib/ \ + ) + $(TARGET_CC) -nostdlib -nostartfiles -shared -x c /dev/null \ + -o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/lib/libc.so +endef + +$(eval $(call HostBuild)) |