diff options
Diffstat (limited to 'toolchain/eglibc/headers/.svn')
-rw-r--r-- | toolchain/eglibc/headers/.svn/entries | 62 | ||||
-rw-r--r-- | toolchain/eglibc/headers/.svn/text-base/Makefile.svn-base | 26 |
2 files changed, 88 insertions, 0 deletions
diff --git a/toolchain/eglibc/headers/.svn/entries b/toolchain/eglibc/headers/.svn/entries new file mode 100644 index 0000000..a136d56 --- /dev/null +++ b/toolchain/eglibc/headers/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/toolchain/eglibc/headers +svn://svn.openwrt.org/openwrt + + + +2012-07-03T14:23:32.719514Z +32584 +nbd + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +Makefile +file + + + + +2013-03-17T12:13:23.000000Z +f91f160dbe6ebeb1eaf7bace09890518 +2012-07-03T14:23:32.719514Z +32584 +nbd + + + + + + + + + + + + + + + + + + + + + +639 + diff --git a/toolchain/eglibc/headers/.svn/text-base/Makefile.svn-base b/toolchain/eglibc/headers/.svn/text-base/Makefile.svn-base new file mode 100644 index 0000000..69495c9 --- /dev/null +++ b/toolchain/eglibc/headers/.svn/text-base/Makefile.svn-base @@ -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)) |