Return-Path: X-Original-To: apmail-axis-c-user-archive@www.apache.org Delivered-To: apmail-axis-c-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6E5B79661 for ; Thu, 14 Jun 2012 17:26:10 +0000 (UTC) Received: (qmail 3604 invoked by uid 500); 14 Jun 2012 17:26:10 -0000 Delivered-To: apmail-axis-c-user-archive@axis.apache.org Received: (qmail 3516 invoked by uid 500); 14 Jun 2012 17:26:09 -0000 Mailing-List: contact c-user-help@axis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Apache AXIS C User List" Delivered-To: mailing list c-user@axis.apache.org Received: (qmail 3499 invoked by uid 99); 14 Jun 2012 17:26:09 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jun 2012 17:26:09 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FSL_RCVD_USER,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of jduran.gm@gmail.com designates 209.85.214.45 as permitted sender) Received: from [209.85.214.45] (HELO mail-bk0-f45.google.com) (209.85.214.45) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jun 2012 17:26:01 +0000 Received: by bkwj10 with SMTP id j10so2025736bkw.32 for ; Thu, 14 Jun 2012 10:25:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=S+wB2ZqYmAj+KegnBCkgUPIBZlrPu6+9o9aDCTKPktc=; b=yBHDvCLOkwuGsTCReZ7WCaE6eWHjdcyjFMrDK2rxFU79bAApj6inH9iBkOIC371l7t ET6hiiIz1Smc6bSp4+FgLkZrq/YTPzDL1npEwzewOMTSC47LL32cyfKZYD+JliD+Zzae 4m/IpkIML+mGZzUVCB7PKtcb15qIbuCmXPHbwEMLMQpSRPM8sOtwao6dun1PWBZcY5U4 jdYSWFv5+6tnTIFC1rzK7ufOiwhOmfLRnP+rs9uIwsvgyZZkSacXbV/DkBC+Ijp4SDN9 g2FRFtKH4Yj/9eF+Yl/N9WOhnONm/TokcRNZKLj5qNob1fjQAyTgCVUJA6EV39YNMbdw 6/0Q== MIME-Version: 1.0 Received: by 10.204.155.148 with SMTP id s20mr1551418bkw.56.1339694741107; Thu, 14 Jun 2012 10:25:41 -0700 (PDT) Received: by 10.204.167.11 with HTTP; Thu, 14 Jun 2012 10:25:41 -0700 (PDT) Date: Thu, 14 Jun 2012 19:25:41 +0200 Message-ID: Subject: Missing dependency when compiling axis2c for ARM. From: Joaquim Duran To: c-user@axis.apache.org Content-Type: text/plain; charset=ISO-8859-1 Dear all, I'm cross compiling the axis2c to an ARM computer, however there is a missing dependency in the Makefile to build a library. To configure the compilation, I run the following command: # Cross compiling export CXX_FLAGS="-O2 -march=armv7-a -mtune=cortex-a8 -mfpu=neon -ftree-vectorize -ffast-math -mfloat-abi=softfp" export CXX_FLAGS=${CXX_FLAGS}" -I/home/qduran/dm3730/1020072_DM37x_Linux_BSP_1-0/rootfs/usr/include/" export LD_FLAGS=" -L/home/qduran/dm3730/1020072_DM37x_Linux_BSP_1-0/rootfs/usr/lib/" export AXIS2C_HOME=/home/qduran/dm3730/1020072_DM37x_Linux_BSP_1-0/rootfs/usr/local/axis2c/ INSTALL_DIR=${AXIS2C_HOME} CC=/opt/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-gcc \ CXX=/opt/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-g++ \ AR=/opt/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-ar \ RANLIB=/opt/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-ranlib \ ./configure --prefix=${INSTALL_DIR} \ --build=i686-linux --host=arm-none-linux-gnueabi \ --target=arm-none-linux-gnueabi \ --enable-openssl --enable-libxml2=no --enable-tests=no \ --enable-guththila=no --enable-amqp=no And the error is: /opt/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../src/parser -I../../src/om -I../../src/attachments -I ../../../util/include -g -O2 -D_LARGEFILE64_SOURCE -ansi -Werror -Wall -Wno-implicit-function-declaration -MT om_navigator.lo -MD -MP -MF .deps/om_navigator.Tpo -c om_navigator.c -fPIC -DPIC -o .libs/om_navigator.o /opt/CodeSourcery/Sourcery_G++_Lite/bin/arm-none-linux-gnueabi-gcc -DHAVE_CONFIG_H -I. -I../.. -I../../include -I../../src/parser -I../../src/om -I../../src/attachments -I ../../../util/include -g -O2 -D_LARGEFILE64_SOURCE -ansi -Werror -Wall -Wno-implicit-function-declaration -MT om_navigator.lo -MD -MP -MF .deps/om_navigator.Tpo -c om_navigator.c -o om_navigator.o >/dev/null 2>&1 mv -f .deps/om_navigator.Tpo .deps/om_navigator.Plo make[5]: *** No rule to make target `../parser//libaxis2_parser.la', needed by `libaxis2_axiom.la'. Stop. make[5]: Leaving directory `/home/qduran/dm3730/src/axis2c-src-1.6.0/axiom/src/om' make[4]: *** [all-recursive] Error 1 make[4]: Leaving directory `/home/qduran/dm3730/src/axis2c-src-1.6.0/axiom/src' make[3]: *** [all-recursive] Error 1 make[3]: Leaving directory `/home/qduran/dm3730/src/axis2c-src-1.6.0/axiom' make[2]: *** [all] Error 2 make[2]: Leaving directory `/home/qduran/dm3730/src/axis2c-src-1.6.0/axiom' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/qduran/dm3730/src/axis2c-src-1.6.0' make: *** [all] Error 2 This happens with svn version (rev 1350336) and version 1.6.0. Any suggestion to fix the issue? Thanks and Best Regards, Joaquim Duran --------------------------------------------------------------------- To unsubscribe, e-mail: c-user-unsubscribe@axis.apache.org For additional commands, e-mail: c-user-help@axis.apache.org