This is an automated email from Gerrit.

Paul Fertser ([email protected]) just uploaded a new patch set to Gerrit, 
which you can find at http://openocd.zylin.com/1473

-- gerrit

commit b07fbd37973febd9347ab2e1299e7a892073fc9b
Author: Paul Fertser <[email protected]>
Date:   Wed Jul 3 13:54:16 2013 +0400

    ft2232_libftdi: perform basic configure checking when cross-compiling
    
    When cross-compiling, current configure script fully ignores libftdi
    unavailability and proceeds with LIBS having -lftdi -lusb, that
    results in a non-obvious failure much later.
    
    Try to verify libftdi is available by checking if ftdi_new function is
    linkable.
    
    Change-Id: I4f593d8ada1f38f82e7f1baa1a4b37b09619e1b4
    Signed-off-by: Paul Fertser <[email protected]>

diff --git a/configure.ac b/configure.ac
index 6e3f986..87f95d5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1128,7 +1128,8 @@ if test $build_ft2232_libftdi = yes -o 
$build_usb_blaster_libftdi = yes -o \
     ], [
       AC_MSG_ERROR([Cannot build & run test program using libftdi])
     ], [
-      AC_MSG_RESULT([Skipping as we are cross-compiling])
+      AC_MSG_RESULT([Skipping as we are cross-compiling, trying build only])
+      AC_SEARCH_LIBS([ftdi_new], [], [], [AC_MSG_ERROR([Cannot link with 
libftdi])])
     ])
 
 AC_MSG_CHECKING([for libftdi highspeed device support])

-- 

------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to