Hi folks, I'm trying to use a crosscompiled rxtx on an ARM platform together with classpath and jamvm. jamvm is working well for itelf. However I get exception during initialisation with the nativeGetVersion call out of RXTXVersion object. Seems to me that the jni call is not working here. Here is the commandline I use to test rxtx. jamvm -verbose:jni -classpath /usr/share/jamvm/classes.zip:/usr/share/classpath/glibj.zip:.:/usr/share/java/RXTXcomm.jar SerTest SerTest is a piece of example test code I grabbed somewhere in the net, which simply calls getPortIdentifiers() and list them all. I attached the code to this mail. The code runs well on my host, which is a debian unstable. On my target however it breaks up with a "java.lang.UnsatisfiedLinkError: nativeGetVersion thrown while loading gnu.io.RXTXCommDriver". I traced along the jni calls. Seems that the nativeGetVersion call cannot be found. Here's a part of the verbose messages by jamvm during the call: ..... [Dynamic-linking native method java.io.VMFile.exists ... JNI] [Dynamic-linking native method java.io.VMFile.length ... JNI] [Dynamic-linking native method java.lang.VMClassLoader.defineClass ... internal] [Dynamic-linking native method java.lang.VMClassLoader.getBootClassPathSize ... internal] [Dynamic-linking native method java.lang.VMClassLoader.getBootClassPathResource ... internal] [Dynamic-linking native method java.lang.VMClassLoader.getBootPackage ... internal] [Dynamic-linking native method gnu.io.RXTXVersion.nativeGetVersion ... ] [Dynamic-linking native method gnu.io.RXTXCommDriver.nativeGetVersion ... ] [Dynamic-linking native method gnu.java.nio.VMChannel.write ... JNI] java.lang.UnsatisfiedLinkError: nativeGetVersion thrown while loading gnu.io.RXTXCommDriver java.lang.NoClassDefFoundError: gnu/io/RXTXCommDriver thrown while loading gnu.io.RXTXCommDriver [Dynamic-linking native method java.lang.VMRuntime.exit ... internal] As far as I can tell. The jni interface seems to be working, since e.g. java.io.VMFile.exists, which is implemented in classpath itself could be called without trouble. When it however comes to RXTX, jni failed to find the nativeGetVersion call, which is located in librxtxSerial.so According to strace the library fiel was loaded correctly priorly. I tried to grab a little around in the jni code of classpath, where I unfortunately could not find anything promising. Additionally to my serial test code I attached the config.log file of my rxtx package for the case that it might be somehow a linker problem. I'd really apericate any hint on my trouble. Thx Luotao Fu -- Pengutronix e.K. | Dipl.-Ing. Luotao Fu | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
import java.util.*; import gnu.io.*; public class SerTest { public static void main(String[] args) { Enumeration en = CommPortIdentifier.getPortIdentifiers(); while (en.hasMoreElements()) { CommPortIdentifier cpi = (CommPortIdentifier) en.nextElement(); System.out.println("name=" + cpi.getName()); } } }
This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.63. Invocation command line was $ ./configure --prefix=/usr --sysconfdir=/etc --host=arm-v5te-linux-gnueabi --build=i686-host-linux-gnu --enable-static --enable-shared --enable-lockfile_server=no --enable-DEBUG=no --enable-liblock=no ## --------- ## ## Platform. ## ## --------- ## hostname = corefu uname -m = i686 uname -r = 2.6.29-2-686 uname -s = Linux uname -v = #1 SMP Sun May 3 12:46:00 UTC 2009 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-cross/bin PATH: /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-cross/sbin PATH: /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-host/bin PATH: /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-host/sbin PATH: /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/selected_toolchain PATH: /ptx/sys/bin PATH: /bin PATH: /ptx/bin PATH: /usr/local/bin PATH: /usr/bin PATH: /usr/bin/X11 PATH: /usr/games PATH: /home/lfu/local/bin PATH: /sbin PATH: /usr/sbin PATH: /ptx/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:2112: checking build system type configure:2130: result: i686-host-linux-gnu configure:2152: checking host system type configure:2167: result: arm-v5te-linux-gnueabi configure:2189: checking target system type configure:2204: result: arm-v5te-linux-gnueabi configure:2232: WARNING: Trying libtool. If the following fails install libtool configure:2242: checking for arm-v5te-linux-gnueabi-gcc configure:2269: result: arm-v5te-linux-gnueabi-gcc configure:2541: checking for C compiler version configure:2549: arm-v5te-linux-gnueabi-gcc --version >&5 arm-v5te-linux-gnueabi-gcc (OSELAS.Toolchain-1.99.3) 4.3.2 Copyright (C) 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:2553: $? = 0 configure:2560: arm-v5te-linux-gnueabi-gcc -v >&5 Using built-in specs. Target: arm-v5te-linux-gnueabi Configured with: /home/mkl/himalia-pengutronix/toolchain/OSELAS.Toolchain-1.99.3.2/platform-arm-v5te-linux-gnueabi-gcc-4.3.2-glibc-2.8-binutils-2.18-kernel-2.6.27-sanitized/build-cross/gcc-4.3.2/configure --target=arm-v5te-linux-gnueabi --with-sysroot=/home/mkl/himalia-pengutronix/toolchain/OSELAS.Toolchain-1.99.3.2/inst/opt/OSELAS.Toolchain-1.99.3/arm-v5te-linux-gnueabi/gcc-4.3.2-glibc-2.8-binutils-2.18-kernel-2.6.27-sanitized/sysroot-arm-v5te-linux-gnueabi --disable-multilib --with-float=soft --with-fpu=vfp --with-cpu=arm926ej-s --enable-__cxa_atexit --disable-sjlj-exceptions --disable-nls --disable-decimal-float --disable-fixed-point --disable-win32-registry --enable-symvers=gnu --with-pkgversion=OSELAS.Toolchain-1.99.3 --with-gmp=/home/mkl/himalia-pengutronix/toolchain/OSELAS.Toolchain-1.99.3.2/platform-arm-v5te-linux-gnueabi-gcc-4.3.2-glibc-2.8-binutils-2.18-kernel-2.6.27-sanitized/sysroot-host --with-mpfr=/home/mkl/himalia-pengutronix/toolchain/OSELAS.Toolchain-1.99.3.2/platform-arm-v5te-linux-gnueabi-gcc-4.3.2-glibc-2.8-binutils-2.18-kernel-2.6.27-sanitized/sysroot-host --prefix=/home/mkl/himalia-pengutronix/toolchain/OSELAS.Toolchain-1.99.3.2/inst/opt/OSELAS.Toolchain-1.99.3/arm-v5te-linux-gnueabi/gcc-4.3.2-glibc-2.8-binutils-2.18-kernel-2.6.27-sanitized --enable-languages=c,c++ --enable-threads=posix --enable-c99 --enable-long-long --enable-libstdcxx-debug --enable-profile --enable-shared --enable-libssp --enable-checking=release Thread model: posix gcc version 4.3.2 (OSELAS.Toolchain-1.99.3) configure:2564: $? = 0 configure:2571: arm-v5te-linux-gnueabi-gcc -V >&5 arm-v5te-linux-gnueabi-gcc: '-V' option must have argument configure:2575: $? = 1 configure:2598: checking for C compiler default output file name configure:2620: arm-v5te-linux-gnueabi-gcc -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include -L/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/lib -L/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/lib -Wl,-rpath-link -Wl,/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/lib -Wl,-rpath-link -Wl,/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/lib conftest.c >&5 configure:2624: $? = 0 configure:2662: result: a.out configure:2681: checking whether the C compiler works configure:2714: result: yes configure:2721: checking whether we are cross compiling configure:2723: result: yes configure:2726: checking for suffix of executables configure:2733: arm-v5te-linux-gnueabi-gcc -o conftest -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include -L/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/lib -L/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/lib -Wl,-rpath-link -Wl,/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/lib -Wl,-rpath-link -Wl,/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/lib conftest.c >&5 configure:2737: $? = 0 configure:2763: result: configure:2769: checking for suffix of object files configure:2795: arm-v5te-linux-gnueabi-gcc -c -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:2799: $? = 0 configure:2824: result: o configure:2828: checking whether we are using the GNU C compiler configure:2857: arm-v5te-linux-gnueabi-gcc -c -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:2864: $? = 0 configure:2881: result: yes configure:2890: checking whether arm-v5te-linux-gnueabi-gcc accepts -g configure:2920: arm-v5te-linux-gnueabi-gcc -c -g -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:2927: $? = 0 configure:3028: result: yes configure:3045: checking for arm-v5te-linux-gnueabi-gcc option to accept ISO C89 configure:3119: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:3126: $? = 0 configure:3149: result: none needed configure:3241: checking for a sed that does not truncate output configure:3295: result: /bin/sed configure:3298: checking for grep that handles long lines and -e configure:3358: result: /bin/grep configure:3363: checking for egrep configure:3427: result: /bin/grep -E configure:3443: checking for ld used by arm-v5te-linux-gnueabi-gcc configure:3510: result: arm-v5te-linux-gnueabi-ld configure:3519: checking if the linker (arm-v5te-linux-gnueabi-ld) is GNU ld configure:3534: result: yes configure:3539: checking for arm-v5te-linux-gnueabi-ld option to reload object files configure:3546: result: -r configure:3564: checking for BSD-compatible nm configure:3606: result: arm-v5te-linux-gnueabi-nm configure:3610: checking whether ln -s works configure:3614: result: yes configure:3621: checking how to recognise dependent libraries configure:3793: result: pass_all configure:4008: checking how to run the C preprocessor configure:4126: result: arm-v5te-linux-gnueabi-cpp configure:4155: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c configure:4162: $? = 0 configure:4193: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c conftest.c:8:28: error: ac_nonexistent.h: No such file or directory configure:4200: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:4240: checking for ANSI C header files configure:4270: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:4277: $? = 0 configure:4408: result: yes configure:4432: checking for sys/types.h configure:4453: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:4460: $? = 0 configure:4477: result: yes configure:4432: checking for sys/stat.h configure:4453: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:4460: $? = 0 configure:4477: result: yes configure:4432: checking for stdlib.h configure:4453: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:4460: $? = 0 configure:4477: result: yes configure:4432: checking for string.h configure:4453: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:4460: $? = 0 configure:4477: result: yes configure:4432: checking for memory.h configure:4453: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:4460: $? = 0 configure:4477: result: yes configure:4432: checking for strings.h configure:4453: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:4460: $? = 0 configure:4477: result: yes configure:4432: checking for inttypes.h configure:4453: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:4460: $? = 0 configure:4477: result: yes configure:4432: checking for stdint.h configure:4453: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:4460: $? = 0 configure:4477: result: yes configure:4432: checking for unistd.h configure:4453: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:4460: $? = 0 configure:4477: result: yes configure:4507: checking dlfcn.h usability configure:4524: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:4531: $? = 0 configure:4545: result: yes configure:4549: checking dlfcn.h presence configure:4564: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c configure:4571: $? = 0 configure:4585: result: yes configure:4613: checking for dlfcn.h configure:4622: result: yes configure:4749: checking for C++ compiler version configure:4757: arm-v5te-linux-gnueabi-g++ --version >&5 arm-v5te-linux-gnueabi-g++ (OSELAS.Toolchain-1.99.3) 4.3.2 Copyright (C) 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:4761: $? = 0 configure:4768: arm-v5te-linux-gnueabi-g++ -v >&5 Using built-in specs. Target: arm-v5te-linux-gnueabi Configured with: /home/mkl/himalia-pengutronix/toolchain/OSELAS.Toolchain-1.99.3.2/platform-arm-v5te-linux-gnueabi-gcc-4.3.2-glibc-2.8-binutils-2.18-kernel-2.6.27-sanitized/build-cross/gcc-4.3.2/configure --target=arm-v5te-linux-gnueabi --with-sysroot=/home/mkl/himalia-pengutronix/toolchain/OSELAS.Toolchain-1.99.3.2/inst/opt/OSELAS.Toolchain-1.99.3/arm-v5te-linux-gnueabi/gcc-4.3.2-glibc-2.8-binutils-2.18-kernel-2.6.27-sanitized/sysroot-arm-v5te-linux-gnueabi --disable-multilib --with-float=soft --with-fpu=vfp --with-cpu=arm926ej-s --enable-__cxa_atexit --disable-sjlj-exceptions --disable-nls --disable-decimal-float --disable-fixed-point --disable-win32-registry --enable-symvers=gnu --with-pkgversion=OSELAS.Toolchain-1.99.3 --with-gmp=/home/mkl/himalia-pengutronix/toolchain/OSELAS.Toolchain-1.99.3.2/platform-arm-v5te-linux-gnueabi-gcc-4.3.2-glibc-2.8-binutils-2.18-kernel-2.6.27-sanitized/sysroot-host --with-mpfr=/home/mkl/himalia-pengutronix/toolchain/OSELAS.Toolchain-1.99.3.2/platform-arm-v5te-linux-gnueabi-gcc-4.3.2-glibc-2.8-binutils-2.18-kernel-2.6.27-sanitized/sysroot-host --prefix=/home/mkl/himalia-pengutronix/toolchain/OSELAS.Toolchain-1.99.3.2/inst/opt/OSELAS.Toolchain-1.99.3/arm-v5te-linux-gnueabi/gcc-4.3.2-glibc-2.8-binutils-2.18-kernel-2.6.27-sanitized --enable-languages=c,c++ --enable-threads=posix --enable-c99 --enable-long-long --enable-libstdcxx-debug --enable-profile --enable-shared --enable-libssp --enable-checking=release Thread model: posix gcc version 4.3.2 (OSELAS.Toolchain-1.99.3) configure:4772: $? = 0 configure:4779: arm-v5te-linux-gnueabi-g++ -V >&5 arm-v5te-linux-gnueabi-g++: '-V' option must have argument configure:4783: $? = 1 configure:4786: checking whether we are using the GNU C++ compiler configure:4815: arm-v5te-linux-gnueabi-g++ -c -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.cpp >&5 configure:4822: $? = 0 configure:4839: result: yes configure:4848: checking whether arm-v5te-linux-gnueabi-g++ accepts -g configure:4878: arm-v5te-linux-gnueabi-g++ -c -g -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.cpp >&5 configure:4885: $? = 0 configure:4986: result: yes configure:5019: checking how to run the C++ preprocessor configure:5055: arm-v5te-linux-gnueabi-g++ -E -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.cpp configure:5062: $? = 0 configure:5093: arm-v5te-linux-gnueabi-g++ -E -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.cpp conftest.cpp:19:28: error: ac_nonexistent.h: No such file or directory configure:5100: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:5133: result: arm-v5te-linux-gnueabi-g++ -E configure:5162: arm-v5te-linux-gnueabi-g++ -E -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.cpp configure:5169: $? = 0 configure:5200: arm-v5te-linux-gnueabi-g++ -E -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.cpp conftest.cpp:19:28: error: ac_nonexistent.h: No such file or directory configure:5207: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "" | #define PACKAGE_TARNAME "" | #define PACKAGE_VERSION "" | #define PACKAGE_STRING "" | #define PACKAGE_BUGREPORT "" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_DLFCN_H 1 | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:5258: checking for arm-v5te-linux-gnueabi-g77 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-xlf configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-f77 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-frt configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-pgf77 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-cf77 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-fort77 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-fl32 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-af77 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-xlf90 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-f90 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-pgf90 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-pghpf configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-epcf90 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-gfortran configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-g95 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-xlf95 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-f95 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-fort configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-ifort configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-ifc configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-efc configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-pgf95 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-lf95 configure:5288: result: no configure:5258: checking for arm-v5te-linux-gnueabi-ftn configure:5288: result: no configure:5302: checking for g77 configure:5332: result: no configure:5302: checking for xlf configure:5332: result: no configure:5302: checking for f77 configure:5332: result: no configure:5302: checking for frt configure:5332: result: no configure:5302: checking for pgf77 configure:5332: result: no configure:5302: checking for cf77 configure:5332: result: no configure:5302: checking for fort77 configure:5332: result: no configure:5302: checking for fl32 configure:5332: result: no configure:5302: checking for af77 configure:5332: result: no configure:5302: checking for xlf90 configure:5332: result: no configure:5302: checking for f90 configure:5332: result: no configure:5302: checking for pgf90 configure:5332: result: no configure:5302: checking for pghpf configure:5332: result: no configure:5302: checking for epcf90 configure:5332: result: no configure:5302: checking for gfortran configure:5318: found /usr/bin/gfortran configure:5329: result: gfortran configure:5345: WARNING: using cross tools not prefixed with host triplet configure:5355: checking for Fortran 77 compiler version configure:5363: gfortran --version >&5 GNU Fortran (Debian 4.3.3-9) 4.3.3 Copyright (C) 2008 Free Software Foundation, Inc. GNU Fortran comes with NO WARRANTY, to the extent permitted by law. You may redistribute copies of GNU Fortran under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING configure:5367: $? = 0 configure:5374: gfortran -v >&5 Using built-in specs. Target: i486-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Debian 4.3.3-9' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --enable-targets=all --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu Thread model: posix gcc version 4.3.3 (Debian 4.3.3-9) configure:5378: $? = 0 configure:5385: gfortran -V >&5 gfortran: '-V' option must have argument configure:5389: $? = 1 configure:5397: checking whether we are using the GNU Fortran 77 compiler configure:5416: gfortran -c conftest.F >&5 configure:5423: $? = 0 configure:5440: result: yes configure:5446: checking whether gfortran accepts -g configure:5463: gfortran -c -g conftest.f >&5 configure:5470: $? = 0 configure:5486: result: yes configure:5520: checking the maximum length of command line arguments configure:5612: result: 32768 configure:5623: checking command to parse arm-v5te-linux-gnueabi-nm output from arm-v5te-linux-gnueabi-gcc object configure:5719: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:5722: $? = 0 configure:5726: arm-v5te-linux-gnueabi-nm conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm configure:5729: $? = 0 configure:5781: arm-v5te-linux-gnueabi-gcc -o conftest -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include -L/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/lib -L/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/lib -Wl,-rpath-link -Wl,/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/lib -Wl,-rpath-link -Wl,/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/lib conftest.c conftstm.o >&5 configure:5784: $? = 0 configure:5822: result: ok configure:5826: checking for objdir configure:5841: result: .libs configure:5893: checking for arm-v5te-linux-gnueabi-ar configure:5920: result: arm-v5te-linux-gnueabi-ar configure:5985: checking for arm-v5te-linux-gnueabi-ranlib configure:6012: result: arm-v5te-linux-gnueabi-ranlib configure:6077: checking for arm-v5te-linux-gnueabi-strip configure:6104: result: arm-v5te-linux-gnueabi-strip configure:6441: checking if arm-v5te-linux-gnueabi-gcc static flag works configure:6469: result: yes configure:6491: checking if arm-v5te-linux-gnueabi-gcc supports -fno-rtti -fno-exceptions configure:6509: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include -fno-rtti -fno-exceptions conftest.c >&5 cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C configure:6513: $? = 0 configure:6526: result: no configure:6541: checking for arm-v5te-linux-gnueabi-gcc option to produce PIC configure:6745: result: -fPIC configure:6753: checking if arm-v5te-linux-gnueabi-gcc PIC flag -fPIC works configure:6771: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include -fPIC -DPIC conftest.c >&5 configure:6775: $? = 0 configure:6788: result: yes configure:6812: checking if arm-v5te-linux-gnueabi-gcc supports -c -o file.o configure:6833: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include -o out/conftest2.o conftest.c >&5 configure:6837: $? = 0 configure:6859: result: yes configure:6885: checking whether the arm-v5te-linux-gnueabi-gcc linker (arm-v5te-linux-gnueabi-ld) supports shared libraries configure:7785: result: yes configure:7811: checking whether -lc should be explicitly linked in configure:7816: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:7819: $? = 0 configure:7833: arm-v5te-linux-gnueabi-gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1 configure:7836: $? = 0 configure:7848: result: no configure:7856: checking dynamic linker characteristics configure:8423: result: GNU/Linux ld.so configure:8427: checking how to hardcode library paths into programs configure:8452: result: immediate configure:8466: checking whether stripping libraries is possible configure:8471: result: yes configure:9296: checking if libtool supports shared libraries configure:9298: result: yes configure:9301: checking whether to build shared libraries configure:9322: result: yes configure:9325: checking whether to build static libraries configure:9329: result: yes configure:9421: creating libtool configure:9999: checking for ld used by arm-v5te-linux-gnueabi-g++ configure:10066: result: arm-v5te-linux-gnueabi-ld configure:10075: checking if the linker (arm-v5te-linux-gnueabi-ld) is GNU ld configure:10090: result: yes configure:10141: checking whether the arm-v5te-linux-gnueabi-g++ linker (arm-v5te-linux-gnueabi-ld) supports shared libraries configure:11032: result: yes configure:11054: arm-v5te-linux-gnueabi-g++ -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.cc >&5 configure:11057: $? = 0 configure:11153: checking for arm-v5te-linux-gnueabi-g++ option to produce PIC configure:11421: result: -fPIC configure:11429: checking if arm-v5te-linux-gnueabi-g++ PIC flag -fPIC works configure:11447: arm-v5te-linux-gnueabi-g++ -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include -fPIC -DPIC conftest.cc >&5 configure:11451: $? = 0 configure:11464: result: yes configure:11488: checking if arm-v5te-linux-gnueabi-g++ supports -c -o file.o configure:11509: arm-v5te-linux-gnueabi-g++ -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include -o out/conftest2.o conftest.cc >&5 configure:11513: $? = 0 configure:11535: result: yes configure:11561: checking whether the arm-v5te-linux-gnueabi-g++ linker (arm-v5te-linux-gnueabi-ld) supports shared libraries configure:11586: result: yes configure:11657: checking dynamic linker characteristics configure:12224: result: GNU/Linux ld.so configure:12228: checking how to hardcode library paths into programs configure:12253: result: immediate configure:12267: checking whether stripping libraries is possible configure:12272: result: yes configure:13603: checking if libtool supports shared libraries configure:13605: result: yes configure:13608: checking whether to build shared libraries configure:13628: result: yes configure:13631: checking whether to build static libraries configure:13635: result: yes configure:13647: checking for gfortran option to produce PIC configure:13851: result: -fPIC configure:13859: checking if gfortran PIC flag -fPIC works configure:13877: gfortran -c -g -O2 -fPIC conftest.f >&5 configure:13881: $? = 0 configure:13894: result: yes configure:13918: checking if gfortran supports -c -o file.o configure:13939: gfortran -c -g -O2 -o out/conftest2.o conftest.f >&5 configure:13943: $? = 0 configure:13965: result: yes configure:13991: checking whether the gfortran linker (arm-v5te-linux-gnueabi-ld) supports shared libraries configure:14871: result: yes configure:14942: checking dynamic linker characteristics configure:15509: result: GNU/Linux ld.so configure:15513: checking how to hardcode library paths into programs configure:15538: result: immediate configure:15552: checking whether stripping libraries is possible configure:15557: result: yes configure:19836: checking for a BSD-compatible install configure:19904: result: /usr/bin/install -c configure:19915: checking whether build environment is sane configure:19958: result: yes configure:20020: checking for gawk configure:20036: found /usr/bin/gawk configure:20047: result: gawk configure:20058: checking whether make sets $(MAKE) configure:20080: result: yes configure:20110: checking for style of include used by make configure:20138: result: GNU configure:20221: checking for arm-v5te-linux-gnueabi-strip configure:20248: result: arm-v5te-linux-gnueabi-strip configure:20326: checking dependency style of arm-v5te-linux-gnueabi-gcc configure:20416: result: none configure:20435: checking dependency style of arm-v5te-linux-gnueabi-g++ configure:20525: result: none configure:20559: checking fcntl.h usability configure:20576: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:20583: $? = 0 configure:20597: result: yes configure:20601: checking fcntl.h presence configure:20616: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c configure:20623: $? = 0 configure:20637: result: yes configure:20665: checking for fcntl.h configure:20674: result: yes configure:20705: checking sys/fcntl.h usability configure:20722: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:20729: $? = 0 configure:20743: result: yes configure:20747: checking sys/fcntl.h presence configure:20762: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c configure:20769: $? = 0 configure:20783: result: yes configure:20811: checking for sys/fcntl.h configure:20820: result: yes configure:20851: checking sys/file.h usability configure:20868: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:20875: $? = 0 configure:20889: result: yes configure:20893: checking sys/file.h presence configure:20908: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c configure:20915: $? = 0 configure:20929: result: yes configure:20957: checking for sys/file.h configure:20966: result: yes configure:20997: checking sys/time.h usability configure:21014: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:21021: $? = 0 configure:21035: result: yes configure:21039: checking sys/time.h presence configure:21054: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c configure:21061: $? = 0 configure:21075: result: yes configure:21103: checking for sys/time.h configure:21112: result: yes configure:21143: checking sys/signal.h usability configure:21160: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:21167: $? = 0 configure:21181: result: yes configure:21185: checking sys/signal.h presence configure:21200: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c configure:21207: $? = 0 configure:21221: result: yes configure:21249: checking for sys/signal.h configure:21258: result: yes configure:21289: checking signal.h usability configure:21306: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:21313: $? = 0 configure:21327: result: yes configure:21331: checking signal.h presence configure:21346: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c configure:21353: $? = 0 configure:21367: result: yes configure:21395: checking for signal.h configure:21404: result: yes configure:21435: checking termios.h usability configure:21452: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:21459: $? = 0 configure:21473: result: yes configure:21477: checking termios.h presence configure:21492: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c configure:21499: $? = 0 configure:21513: result: yes configure:21541: checking for termios.h configure:21550: result: yes configure:21581: checking grp.h usability configure:21598: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:21605: $? = 0 configure:21619: result: yes configure:21623: checking grp.h presence configure:21638: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c configure:21645: $? = 0 configure:21659: result: yes configure:21687: checking for grp.h configure:21696: result: yes configure:21727: checking pwd.h usability configure:21744: arm-v5te-linux-gnueabi-gcc -c -g -O2 -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c >&5 configure:21751: $? = 0 configure:21765: result: yes configure:21769: checking pwd.h presence configure:21784: arm-v5te-linux-gnueabi-cpp -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include conftest.c configure:21791: $? = 0 configure:21805: result: yes configure:21833: checking for pwd.h configure:21842: result: yes configure:21858: checking whether arm-v5te-linux-gnueabi-gcc needs -traditional configure:21900: result: no configure:21943: checking whether to enable maintainer-specific portions of Makefiles configure:21952: result: no configure:22856: creating ./config.status ## ---------------------- ## ## Running config.status. ## ## ---------------------- ## This file was extended by config.status, which was generated by GNU Autoconf 2.63. Invocation command line was CONFIG_FILES = CONFIG_HEADERS = CONFIG_LINKS = CONFIG_COMMANDS = $ ./config.status on corefu config.status:844: creating Makefile config.status:991: WARNING: 'Makefile.in' seems to ignore the --datarootdir setting config.status:844: creating config.h config.status:1111: executing depfiles commands ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=i686-host-linux-gnu ac_cv_c_compiler_gnu=yes ac_cv_cxx_compiler_gnu=yes ac_cv_env_CCC_set= ac_cv_env_CCC_value= ac_cv_env_CC_set=set ac_cv_env_CC_value=arm-v5te-linux-gnueabi-gcc ac_cv_env_CFLAGS_set= ac_cv_env_CFLAGS_value= ac_cv_env_CPPFLAGS_set=set ac_cv_env_CPPFLAGS_value='-isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include' ac_cv_env_CPP_set=set ac_cv_env_CPP_value=arm-v5te-linux-gnueabi-cpp ac_cv_env_CXXCPP_set= ac_cv_env_CXXCPP_value= ac_cv_env_CXXFLAGS_set= ac_cv_env_CXXFLAGS_value= ac_cv_env_CXX_set=set ac_cv_env_CXX_value=arm-v5te-linux-gnueabi-g++ ac_cv_env_F77_set= ac_cv_env_F77_value= ac_cv_env_FFLAGS_set= ac_cv_env_FFLAGS_value= ac_cv_env_LDFLAGS_set=set ac_cv_env_LDFLAGS_value='-L/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/lib -L/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/lib -Wl,-rpath-link -Wl,/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/lib -Wl,-rpath-link -Wl,/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/lib' ac_cv_env_LIBS_set= ac_cv_env_LIBS_value= ac_cv_env_build_alias_set=set ac_cv_env_build_alias_value=i686-host-linux-gnu ac_cv_env_host_alias_set=set ac_cv_env_host_alias_value=arm-v5te-linux-gnueabi ac_cv_env_target_alias_set= ac_cv_env_target_alias_value= ac_cv_f77_compiler_gnu=yes ac_cv_func_dcgettext=yes ac_cv_func_getpgrp_void=yes ac_cv_func_getrlimit=yes ac_cv_func_malloc_0_nonnull=yes ac_cv_func_memcmp_clean=yes ac_cv_func_nonposix_getgrgid_r=no ac_cv_func_nonposix_getpwuid_r=no ac_cv_func_posix_getgrgid_r=yes ac_cv_func_posix_getpwnam_r=yes ac_cv_func_posix_getpwuid_r=yes ac_cv_func_printf_unix98=yes ac_cv_func_realloc_0_nonnull=yes ac_cv_func_setgrent_void=yes ac_cv_func_setpgrp_void=yes ac_cv_func_setvbuf_reversed=no ac_cv_func_vsnprintf_c99=yes ac_cv_have_abstract_sockets=yes ac_cv_header_dlfcn_h=yes ac_cv_header_fcntl_h=yes ac_cv_header_grp_h=yes ac_cv_header_inttypes_h=yes ac_cv_header_memory_h=yes ac_cv_header_pwd_h=yes ac_cv_header_signal_h=yes ac_cv_header_stdc=yes ac_cv_header_stdint_h=yes ac_cv_header_stdlib_h=yes ac_cv_header_string_h=yes ac_cv_header_strings_h=yes ac_cv_header_sys_fcntl_h=yes ac_cv_header_sys_file_h=yes ac_cv_header_sys_signal_h=yes ac_cv_header_sys_stat_h=yes ac_cv_header_sys_time_h=yes ac_cv_header_sys_types_h=yes ac_cv_header_termios_h=yes ac_cv_header_unistd_h=yes ac_cv_host=arm-v5te-linux-gnueabi ac_cv_objext=o ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_GREP=/bin/grep ac_cv_path_install='/usr/bin/install -c' ac_cv_prog_AR=arm-v5te-linux-gnueabi-ar ac_cv_prog_AWK=gawk ac_cv_prog_CC=arm-v5te-linux-gnueabi-gcc ac_cv_prog_CPP=arm-v5te-linux-gnueabi-cpp ac_cv_prog_CXXCPP='arm-v5te-linux-gnueabi-g++ -E' ac_cv_prog_RANLIB=arm-v5te-linux-gnueabi-ranlib ac_cv_prog_STRIP=arm-v5te-linux-gnueabi-strip ac_cv_prog_ac_ct_F77=gfortran ac_cv_prog_cc_c89= ac_cv_prog_cc_g=yes ac_cv_prog_cxx_g=yes ac_cv_prog_f77_g=yes ac_cv_prog_gcc_traditional=no ac_cv_prog_make_make_set=yes ac_cv_sizeof_long_double=8 ac_cv_sizeof_long_long=8 ac_cv_sysv_ipc=yes ac_cv_target=arm-v5te-linux-gnueabi ac_cv_type_uintptr_t=yes am_cv_CC_dependencies_compiler_type=none am_cv_CXX_dependencies_compiler_type=none glib_cv_long_long_format=ll gt_cv_func_gettext_libintl=yes lt_cv_deplibs_check_method=pass_all lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_ld_reload_flag=-r lt_cv_objdir=.libs lt_cv_path_LD=arm-v5te-linux-gnueabi-ld lt_cv_path_LDCXX=arm-v5te-linux-gnueabi-ld lt_cv_path_NM=arm-v5te-linux-gnueabi-nm lt_cv_path_SED=/bin/sed lt_cv_prog_compiler_c_o=yes lt_cv_prog_compiler_c_o_CXX=yes lt_cv_prog_compiler_c_o_F77=yes lt_cv_prog_compiler_rtti_exceptions=no lt_cv_prog_gnu_ld=yes lt_cv_prog_gnu_ldcxx=yes lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\''' lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\''' lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\''' lt_cv_sys_max_cmd_len=32768 lt_lt_cv_prog_compiler_c_o='"yes"' lt_lt_cv_prog_compiler_c_o_CXX='"yes"' lt_lt_cv_prog_compiler_c_o_F77='"yes"' lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"' lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"' lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"' ## ----------------- ## ## Output variables. ## ## ----------------- ## ACLOCAL='${SHELL} /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/build-target/rxtx-2.1-7r2/missing --run aclocal-1.9' AMDEPBACKSLASH='\' AMDEP_FALSE='#' AMDEP_TRUE='' AMTAR='${SHELL} /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/build-target/rxtx-2.1-7r2/missing --run tar' AR='arm-v5te-linux-gnueabi-ar' AUTOCONF='${SHELL} /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/build-target/rxtx-2.1-7r2/missing --run autoconf' AUTOHEADER='${SHELL} /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/build-target/rxtx-2.1-7r2/missing --run autoheader' AUTOMAKE='${SHELL} /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/build-target/rxtx-2.1-7r2/missing --run automake-1.9' AWK='gawk' CC='arm-v5te-linux-gnueabi-gcc' CCDEPMODE='depmode=none' CFLAGS='-g -O2 -D_BSD_SOURCE -D__need_timespec' CLASSPATH='.:/usr/lib/jvm/java-6-sun//jre/lib' COMPILE='cc ' CPP='arm-v5te-linux-gnueabi-cpp' CPPFLAGS='-isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/include -isystem /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/include' CXX='arm-v5te-linux-gnueabi-g++' CXXCPP='arm-v5te-linux-gnueabi-g++ -E' CXXDEPMODE='depmode=none' CXXFLAGS='-g -O2' CYGPATH_W='echo' DEFS='-DHAVE_CONFIG_H' DEPDIR='.deps' ECHO='echo' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' EXEEXT='' EXTENSION='c' F77='gfortran' FFLAGS='-g -O2' GLIBTOOL='$(SHELL) $(TOP)/libtool' GREP='/bin/grep' INSTALL_DATA='${INSTALL} -m 644' INSTALL_PROGRAM='${INSTALL}' INSTALL_SCRIPT='${INSTALL}' INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s' JAR='$(JPATH)/bin/jar' JAVAC='$(JPATH)/bin/javac -classpath $(CLASSPATH) -d $(TOP)/ -O -source 1.3 -target 1.3' JAVADOC='$(JPATH)/bin/javadoc' JAVAH='$(JPATH)/bin/javah -classpath $(CLASSPATH) -d $(DEST) -jni' JAVAH_FIX='' JAVAINCLUDE='-I$(JAVAINCLUDEDIR)' JAVAINCLUDEDIR='/usr/lib/jvm/java-6-sun-1.6.0.13/include' JAVANATINC='-I$(JAVAINCLUDEDIR)/./linux/' JAVA_CLASS_PATH='' JAVA_CLASS_VERSION='' JAVA_HOME='' JAVA_LIBRARY_PATH='' JAVA_VENDOR='Sun Microsystems Inc.' JAVA_VERSION='1.6.0_13' JHOME='' JPATH='/usr/lib/jvm/java-6-sun-1.6.0.13' LDFLAG='' LDFLAGS='-L/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/lib -L/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/lib -Wl,-rpath-link -Wl,/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/lib -Wl,-rpath-link -Wl,/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/sysroot-target/usr/lib -lpthread' LIBOBJS='' LIBS='' LIBTOOL='$(SHELL) $(top_builddir)/libtool' LIBTOOL_FIX='' LIB_EXTENSION='la' LINK='$(GLIBTOOL) --mode=link $(CC) $(CFLAGS) $(LDFLAGS) -release $(VERSION) -o librxtx$*.la -rpath $(RXTX_PATH)' LN_S='ln -s' LTLIBOBJS='' MAINT='#' MAINTAINER_MODE_FALSE='' MAINTAINER_MODE_TRUE='#' MAKEINFO='${SHELL} /ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/build-target/rxtx-2.1-7r2/missing --run makeinfo' OBJECT_EXTENSION='lo' OBJEXT='o' OS_ARCH='i386' OS_NAME='Linux' OS_VERSION='2.6.29-2-686' PACKAGE='Serial' PACKAGE_BUGREPORT='' PACKAGE_NAME='' PACKAGE_STRING='' PACKAGE_TARNAME='' PACKAGE_VERSION='' PATH_SEPARATOR=':' RANLIB='arm-v5te-linux-gnueabi-ranlib' RXTX_PATH='' SET_MAKE='' SHELL='/bin/sh' STRIP='arm-v5te-linux-gnueabi-strip' TARGETLIB='$(target_triplet)/librxtxSerial.la $(target_triplet)/librxtxParallel.la $(target_triplet)/librxtxI2C.la $(target_triplet)/librxtxRaw.la $(target_triplet)/librxtxRS485.la' THREAD_FLAG='' TOP='/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/build-target/rxtx-2.1-7r2' VERSION='2.1-7' WINDOWS_JAVA_INCLUDE='' ac_ct_CC='' ac_ct_CXX='' ac_ct_F77='gfortran' am__fastdepCC_FALSE='' am__fastdepCC_TRUE='#' am__fastdepCXX_FALSE='' am__fastdepCXX_TRUE='#' am__include='include' am__leading_dot='.' am__quote='' am__tar='${AMTAR} chof - "$$tardir"' am__untar='${AMTAR} xf -' bindir='${exec_prefix}/bin' build='i686-host-linux-gnu' build_alias='i686-host-linux-gnu' build_cpu='i686' build_os='linux-gnu' build_vendor='host' datadir='${datarootdir}' datarootdir='${prefix}/share' docdir='${datarootdir}/doc/${PACKAGE}' dvidir='${docdir}' exec_prefix='${prefix}' host='arm-v5te-linux-gnueabi' host_alias='arm-v5te-linux-gnueabi' host_cpu='arm' host_os='linux-gnueabi' host_vendor='v5te' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' install_sh='/ptx/work/octopus/lfu/oselas/belimo/OSELAS.BSP-Belimo-trunk/platform-AT91SAM9260-EK/build-target/rxtx-2.1-7r2/install-sh' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' mkdir_p='mkdir -p --' oldincludedir='/usr/include' pdfdir='${docdir}' prefix='/usr' program_transform_name='s,x,x,' psdir='${docdir}' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='/etc' target='arm-v5te-linux-gnueabi' target_alias='' target_cpu='arm' target_os='linux-gnueabi' target_vendor='v5te' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" #define STDC_HEADERS 1 #define HAVE_SYS_TYPES_H 1 #define HAVE_SYS_STAT_H 1 #define HAVE_STDLIB_H 1 #define HAVE_STRING_H 1 #define HAVE_MEMORY_H 1 #define HAVE_STRINGS_H 1 #define HAVE_INTTYPES_H 1 #define HAVE_STDINT_H 1 #define HAVE_UNISTD_H 1 #define HAVE_DLFCN_H 1 #define PACKAGE "Serial" #define VERSION "2.1-7" #define HAVE_FCNTL_H 1 #define HAVE_SYS_FCNTL_H 1 #define HAVE_SYS_FILE_H 1 #define HAVE_SYS_TIME_H 1 #define HAVE_SYS_SIGNAL_H 1 #define HAVE_SIGNAL_H 1 #define HAVE_TERMIOS_H 1 #define HAVE_GRP_H 1 #define HAVE_PWD_H 1 configure: exit 0
Attachment:
signature.asc
Description: Digital signature