On 22 April 2013 00:09, Juan Erbes <[email protected]> wrote:
>
>
>
> 2013/4/21 Freddie Chopin <[email protected]>
>>
>> Hi!
>>
>> OpenOCD 0.7.0-rc1 release candidate was just released - files are
>> available on sourceforge and relevant changes are in the repository.
>>
>> https://sourceforge.net/projects/openocd/files/openocd/0.7.0-rc1/
>>
>> In case there will be no problems, RC1 will be the only release
>> candidate, so a final release may be expected in 2 weeks - on 05.05.2013
>> (maybe sooner).
>>
>> Submit your test results and any problems you encounter with this RC to
>> developer's mailing list.
>>
>>  From now on till the final release is done only bugfixes and non-code
>> changes (like doc updates) are allowed in the repository - the merge
>> window is closed.
>>
>> Regards,
>> FCh
>>
>>
>> ------------------------------------------------------------------------------
>> Precog is a next-generation analytics platform capable of advanced
>> analytics on semi-structured data. The platform includes APIs for building
>> apps and a phenomenal toolset for data science. Developers can use
>> our toolset for easy data analysis & visualization. Get a free account!
>> http://www2.precog.com/precogplatform/slashdotnewsletter
>> _______________________________________________
>> OpenOCD-user mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/openocd-user
>
>
> Hi!
>
> I tryed to compile in Opensuse 12.3 X86-64 with this options:
>
> ./configure --enable-ft2232_ftd2xx --with-ftd2xx-lib=shared
> --enable-maintainer-mode
>
> But I got in the log this error from the configure sscript:
>
> checking ftd2xx.h usability... no
> checking ftd2xx.h presence... no
> checking for ftd2xx.h... no
> configure: error: You seem to be missing the FTD2xx driver header file.
>
> The file ftd2xx.h is copied in /usr/include/ftd2xx.h and
> usr/local/include/ftd2xx.h and in openocd-0.7.0-rc1.
>
> I tried to add the path in the options of the ftd2xx driver to the
> ./configure script with --with-ft2xx-linux-tardir=/home/user/release (the
> directory of the decompressed ftd2xx driver).
>
> And the problem continues.
>

strange, just tested myself and it is indeed broken when using:
--enable-ft2232_ftd2xx --with-ftd2xx-linux-tardir=...

The fix is part of another change on gerrit - http://openocd.zylin.com/467

@@ -961,7 +961,7 @@ if test $build_ft2232_ftd2xx = yes -o $build_presto_ftd2xx =
       fi
     fi
     LDFLAGS="${LDFLAGS} ${FTD2XX_LDFLAGS}"
-    LIBS="${LIBS} ${FTD2XX_LIB}"
+    LIBS="${FTD2XX_LIB} ${LIBS}"
     AC_MSG_RESULT([${FTD2XX_LDFLAGS} ${FTD2XX_LIB}])
   else
     AC_CHECK_HEADER([ftd2xx.h],[],[

Nothing has changed in that file so unsure why it is now complaining.

Spen

------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
OpenOCD-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openocd-devel

Reply via email to