bug-binutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Cross compilation for openldap


From: soelawin
Subject: Cross compilation for openldap
Date: Fri, 4 May 2007 18:14:27 -0700 (PDT)

Hi
           I tried to do cross compilation for arm on i386-pc-linux using
uclibc for arm-linux platform. Now I got a cross compilation error, let me
know how to solve this prob. my configuration for openldap is as follow:

*************************************************************************************
PKG_CONFIGURE_OPTIONS = \
        --enable-shared \
        --enable-static \
        --disable-debug \
        --enable-dynamic \
        --enable-syslog \
        --disable-local \
        --disable-slapd \
        --disable-slurpd \
        --with-cyrus-sasl \
        --without-fetch \
        --with-threads \
        --with-tls \
        --with-yielding_select="yes" \

$(PKG_BUILD_DIR)/.configured:
        touch $@

$(PKG_BUILD_DIR)/.built:
        rm -rf $(PKG_INSTALL_DIR)
        mkdir -p $(PKG_INSTALL_DIR)
        (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
                ./configure \
                  --target=$(GNU_HOST_NAME) \
                  --host=$(GNU_HOST_NAME) \
                  --build=$(GNU_HOST_NAME) \
                  --program-prefix="" \
                  --program-suffix="" \
                  --prefix=/usr \
                  --exec-prefix=/usr \
                  --bindir=/usr/bin \
                  --datadir=/usr/share \
                  --includedir=/usr/include \
                  --libdir=/usr/lib \
                  --libexecdir=/usr/lib \
                  --localstatedir=/var \
                  --mandir=/usr/share/man \
                  --sbindir=/usr/sbin \
                  --sysconfdir=/etc \
                  $(DISABLE_LARGEFILE) \
                  $(DISABLE_NLS) \
                  $(PKG_CONFIGURE_OPTIONS) \
                  --without-cyrus-sasl \
                  --without-threads \
                  --without-tls \
        )
        $(MAKE) -C $(PKG_BUILD_DIR) depend 
        $(MAKE) -C $(PKG_BUILD_DIR)/libraries/liblutil
        $(MAKE) -C $(PKG_BUILD_DIR)/libraries/liblber
        $(MAKE) -C $(PKG_BUILD_DIR)/libraries/liblunicode
        $(MAKE) -C $(PKG_BUILD_DIR)/libraries/liblber clean
        $(MAKE) -C $(PKG_BUILD_DIR)/libraries/liblutil clean
        (cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
                $(TARGET_CONFIGURE_OPTS) \
                CFLAGS="$(TARGET_CFLAGS)" \
                CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
                LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
                ac_cv_func_memcmp_clean="yes" \
                ./configure \
                  --target=$(GNU_TARGET_NAME) \
                  --host=$(GNU_TARGET_NAME) \
                  --build=$(GNU_HOST_NAME) \
                  --program-prefix="" \
                  --program-suffix="" \
                  --prefix=/usr \
                  --exec-prefix=/usr \
                  --bindir=/usr/bin \
                  --datadir=/usr/share \
                  --includedir=/usr/include \
                  --libdir=/usr/lib \
                  --libexecdir=/usr/lib \
                  --localstatedir=/var \
                  --mandir=/usr/share/man \
                  --sbindir=/usr/sbin \
                  --sysconfdir=/etc \
                  $(DISABLE_LARGEFILE) \
                  $(DISABLE_NLS) \
                  $(PKG_CONFIGURE_OPTIONS) \
        )
        $(MAKE) -C $(PKG_BUILD_DIR) \
                DESTDIR="$(PKG_INSTALL_DIR)" \
                all install
        touch $@
        

$(IPKG_LIBOPENLDAP):
        mkdir -p $(IDIR_LIBOPENLDAP)/etc/openldap
        $(CP) $(PKG_INSTALL_DIR)/etc/openldap/ldap.conf
$(IDIR_LIBOPENLDAP)/etc/openldap/
        mkdir -p $(IDIR_LIBOPENLDAP)/usr/lib/
        $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{lber,ldap}*.so.*
$(IDIR_LIBOPENLDAP)/usr/lib/
        mkdir -p $(IDIR_LIBOPENLDAP)/usr/share/openldap
        $(CP) $(PKG_INSTALL_DIR)/usr/share/openldap/*
$(IDIR_LIBOPENLDAP)/usr/share/openldap/
        $(RSTRIP) $(IDIR_LIBOPENLDAP)
        $(IPKG_BUILD) $(IDIR_LIBOPENLDAP) $(PACKAGE_DIR)
        
$(IPKG_OPENLDAP_UTILS):
        mkdir -p $(IDIR_OPENLDAP_UTILS)/usr/bin
        $(CP) $(PKG_INSTALL_DIR)/usr/bin/ldap* $(IDIR_OPENLDAP_UTILS)/usr/bin/
        $(RSTRIP) $(IDIR_OPENLDAP_UTILS)
        $(IPKG_BUILD) $(IDIR_OPENLDAP_UTILS) $(PACKAGE_DIR)

$(STAGING_DIR)/usr/lib/libldap.so: $(PKG_BUILD_DIR)/.built
        mkdir -p $(STAGING_DIR)/usr/include
        $(CP) $(PKG_INSTALL_DIR)/usr/include/{lber,ldap}*.h
$(STAGING_DIR)/usr/include/
        mkdir -p $(STAGING_DIR)/usr/lib/
        $(CP) $(PKG_INSTALL_DIR)/usr/lib/lib{lber,ldap}*.{a,so*}
$(STAGING_DIR)/usr/lib/
        touch $(STAGING_DIR)/usr/lib/libldap.so
        
install-dev: $(STAGING_DIR)/usr/lib/libldap.so

uninstall-dev:
        rm -rf $(STAGING_DIR)/usr/include/{lber,ldap}*.h
        rm -rf $(STAGING_DIR)/usr/lib/lib{lber,ldap}*.{a,so*}

compile: install-dev
clean: uninstall-dev


****************************************************************************************

When I make , I got this error as follow:

ucgendat.o: could not read symbols: Files in wrong format

PLs give me some advise the root of the prob.
-- 
View this message in context: 
http://www.nabble.com/Cross-compilation-for-openldap-tf3694961.html#a10332679
Sent from the Gnu - Binutils - Bugs mailing list archive at Nabble.com.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]