X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=blobdiff_plain;f=toolchain%2Feglibc%2FMakefile;h=dec7ec3c11b9190d2d04ba50c66a5ed5b8818f99;hp=822309d0588d80021a32b090c32b0d29fb7904b9;hb=f03b067f326cef4ecf47ed7c03e3c5e8906ed436;hpb=0adb09325c75433248adf7590e72656daf0b36ee;ds=sidebyside diff --git a/toolchain/eglibc/Makefile b/toolchain/eglibc/Makefile index 822309d058..dec7ec3c11 100644 --- a/toolchain/eglibc/Makefile +++ b/toolchain/eglibc/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2009 OpenWrt.org +# Copyright (C) 2006-2010 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -33,6 +33,12 @@ endif ifneq ($(CONFIG_EGLIBC_VERSION_2_11),) PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_11 endif +ifneq ($(CONFIG_EGLIBC_VERSION_2_12),) + PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_12 +endif +ifneq ($(CONFIG_EGLIBC_VERSION_2_13),) + PKG_SOURCE_URL:=svn://svn.eglibc.org/branches/eglibc-2_13 +endif ifneq ($(CONFIG_EGLIBC_VERSION_TRUNK),) PKG_SOURCE_URL:=svn://svn.eglibc.org/trunk endif @@ -58,11 +64,12 @@ EGLIBC_CONFIGURE:= \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(EGLIBC_CFLAGS)" \ libc_cv_slibdir="/lib" \ + use_ldconfig=no \ $(HOST_BUILD_DIR)/libc/configure \ - --prefix=/usr \ + --prefix= \ --build=$(GNU_HOST_NAME) \ --host=$(REAL_GNU_TARGET_NAME) \ - --with-headers=$(TOOLCHAIN_DIR)/usr/include \ + --with-headers=$(TOOLCHAIN_DIR)/include \ --disable-profile \ --without-gd \ --without-cvs \ @@ -79,6 +86,7 @@ endif EGLIBC_MAKE:= \ $(MAKE) \ +export libc_cv_ssp=no define Host/SetToolchainInfo $(SED) 's,^\(LIBC_TYPE\)=.*,\1=$(PKG_NAME),' $(TOOLCHAIN_DIR)/info.mk @@ -99,7 +107,7 @@ define Stage1/Compile endef define Stage1/Install - mkdir -p $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/usr/{include,lib} + mkdir -p $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/{include,lib} $(EGLIBC_MAKE) -C $(HOST_BUILD_DIR1) \ install_root="$(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev" \ install-bootstrap-headers=yes \ @@ -107,10 +115,10 @@ define Stage1/Install $(EGLIBC_MAKE) -C $(HOST_BUILD_DIR1) \ csu/subdir_lib ( cd $(HOST_BUILD_DIR1); \ - $(CP) csu/crt1.o csu/crti.o csu/crtn.o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/usr/lib/ \ + $(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/usr/lib/libc.so + -o $(BUILD_DIR_TOOLCHAIN)/$(LIBC)-dev/lib/libc.so endef define Stage2/Configure