You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

835 lines
25 KiB

  1. AC_PREREQ(2.59)
  2. AC_INIT(configure.in)
  3. AC_CANONICAL_HOST
  4. AC_SEARCH_LIBS([ioperm], [ioperm])
  5. AC_SEARCH_LIBS([dlopen], [dl])
  6. AC_CHECK_HEADERS(jtag_minidriver.h)
  7. AC_CHECK_HEADERS(sys/param.h)
  8. AC_CHECK_HEADERS(sys/time.h)
  9. AC_CHECK_HEADERS(sys/select.h)
  10. AC_CHECK_HEADERS(elf.h)
  11. AC_CHECK_HEADERS(strings.h)
  12. AC_CHECK_HEADERS(stdbool.h)
  13. AC_HEADER_TIME
  14. AC_C_BIGENDIAN
  15. AC_CHECK_FUNCS(strndup)
  16. AC_CHECK_FUNCS(strnlen)
  17. AC_CHECK_FUNCS(gettimeofday)
  18. AC_CHECK_FUNCS(usleep)
  19. AC_CHECK_FUNCS(vasprintf)
  20. build_bitbang=no
  21. build_bitq=no
  22. is_cygwin=no
  23. is_mingw=no
  24. is_win32=no
  25. is_darwin=no
  26. build_release=yes
  27. AC_ARG_ENABLE(release,
  28. AS_HELP_STRING([--enable-release], [Enable Release Build, default no]),
  29. [build_release=$enableval], [build_release=no])
  30. if test $cross_compiling = no; then
  31. if test $build_release = no; then
  32. # check we can find guess-rev.sh
  33. AC_CHECK_FILE("$srcdir/guess-rev.sh", build_release=no, build_release=yes)
  34. fi
  35. fi
  36. # We are not *ALWAYS* being installed in the standard place.
  37. # We may be installed in a "tool-build" specific location.
  38. # Normally with other packages - as part of a tool distro.
  39. # Thus - we should search that 'libdir' also.
  40. #
  41. # And - if we are being installed there - the odds are
  42. # The libraries unique to what we are are there too.
  43. #
  44. # Expand nd deal with NONE - just like configure will do later
  45. OCDprefix=$prefix
  46. OCDxprefix=$exec_prefix
  47. test x"$OCDprefix" = xNONE && OCDprefix=$ac_default_prefix
  48. # Let make expand exec_prefix.
  49. test x"$OCDxprefix" = xNONE && OCDxprefix="$OCDprefix"
  50. # what matters is the "exec-prefix"
  51. if test "$OCDxprefix" != "$ac_default_prefix"
  52. then
  53. # We are installing in a non-standard place
  54. # Nonstandard --prefix and/or --exec-prefix
  55. # We have an override of some sort.
  56. # use build specific install library dir
  57. LDFLAGS="$LDFLAGS -L$OCDxprefix/lib"
  58. # RPATH becomes an issue on Linux only
  59. if test $host_os = linux-gnu || test $host_os = linux ; then
  60. LDFLAGS="$LDFLAGS -Wl,-rpath,$OCDxprefix/lib"
  61. fi
  62. # The "INCDIR" is also usable
  63. CFLAGS="$CFLAGS -I$includedir"
  64. fi
  65. AC_ARG_WITH(ftd2xx,
  66. AS_HELP_STRING([--with-ftd2xx=<PATH>],[This option has been removed.]),
  67. [
  68. # Option Given.
  69. cat << __EOF__
  70. The option: --with-ftd2xx=<PATH> has been removed.
  71. On Linux, the new option is:
  72. --with-ftd2xx-linux-tardir=/path/to/files
  73. Where <path> is the path the the directory where the "tar.gz" file
  74. from FTDICHIP.COM was unpacked, for example:
  75. --with-ftd2xx-linux-tardir=/home/duane/libftd2xx-linux-tardir=/home/duane/libftd2xx0.4.16
  76. On Cygwin/MingW32, the new option is:
  77. --with-ftd2xx-win32-zipdir=/path/to/files
  78. Where <path> is the path to the directory where the "zip" file from
  79. FTDICHIP.COM was unpacked, for example:
  80. --with-ftd2xx-win32-zipdir=/home/duane/ftd2xx.cdm.files
  81. __EOF__
  82. AC_MSG_ERROR([Sorry Cannot continue])
  83. ],
  84. [
  85. # Option not given
  86. true
  87. ]
  88. )
  89. #========================================
  90. # FTD2XXX support comes in 4 forms.
  91. # (1) win32 - via a zip file
  92. # (2) linux - via a tar file
  93. # (3) linux/cygwin/mingw - via libftdi
  94. # (4) darwin - installed under /usr/local
  95. #
  96. # In case (1) and (2) we need to know where the package was unpacked.
  97. AC_ARG_WITH(ftd2xx-win32-zipdir,
  98. AS_HELP_STRING([--with-ftd2xx-win32-zipdir],[Where (CYGWIN/MINGW) the zip file from ftdichip.com was unpacked <default=search>]),
  99. [
  100. # option present
  101. if test -d $with_ftd2xx_win32_zipdir
  102. then
  103. with_ftd2xx_win32_zipdir=`cd $with_ftd2xx_win32_zipdir && pwd`
  104. AC_MSG_NOTICE([Using: ftdichip.com library: $with_ftd2xx_win32_zipdir])
  105. else
  106. AC_MSG_ERROR([Parameter to --with-ftd2xx-win32-zipdir is not a dir: $with_ftd2xx_win32_zipdir])
  107. fi
  108. ],
  109. [
  110. # not given
  111. true
  112. ]
  113. )
  114. AC_ARG_WITH(ftd2xx-linux-tardir,
  115. AS_HELP_STRING([--with-ftd2xx-linux-tardir], [Where (Linux/Unix) the tar file from ftdichip.com was unpacked <default=search>]),
  116. [
  117. # Option present
  118. if test $is_win32 = yes ; then
  119. AC_MSG_ERROR([The option: --with-ftd2xx-linux-tardir is only usable on linux])
  120. fi
  121. if test -d $with_ftd2xx_linux_tardir
  122. then
  123. with_ftd2xx_linux_tardir=`cd $with_ftd2xx_linux_tardir && pwd`
  124. AC_MSG_NOTICE([Using: ftdichip.com library: $with_ftd2xx_linux_tardir])
  125. else
  126. AC_MSG_ERROR([Parameter to --with-ftd2xx-linux-tardir is not a dir: $with_ftd2xx_linux_tardir])
  127. fi
  128. ],
  129. [
  130. # Not given
  131. true
  132. ]
  133. )
  134. AC_ARG_WITH(ftd2xx-lib,
  135. AS_HELP_STRING([--with-ftd2xx-lib], [Use static or shared ftd2xx libs on default static]),
  136. [
  137. case "$withval" in
  138. static)
  139. with_ftd2xx_lib=$withval
  140. ;;
  141. shared)
  142. with_ftd2xx_lib=$withval
  143. ;;
  144. *)
  145. AC_MSG_ERROR([Option: --with-ftd2xx-lib=static or --with-ftd2xx-lib=shared not, $withval])
  146. ;;
  147. esac
  148. ],
  149. [
  150. # Default is static - it is simpler :-(
  151. with_ftd2xx_lib=static
  152. ]
  153. )
  154. AC_ARG_ENABLE(gccwarnings,
  155. AS_HELP_STRING([--disable-gccwarnings], [Disable compiler warnings]),
  156. [gcc_warnings=$enableval], [gcc_warnings=yes])
  157. AC_ARG_ENABLE(wextra,
  158. AS_HELP_STRING([--disable-wextra], [Disable extra compiler warnings]),
  159. [gcc_wextra=$enableval], [gcc_wextra=$gcc_warnings])
  160. AC_ARG_ENABLE(werror,
  161. AS_HELP_STRING([--disable-werror], [Do not treat warnings as errors]),
  162. [gcc_werror=$enableval], [gcc_werror=$gcc_warnings])
  163. # set default verbose options, overridden by following options
  164. debug_jtag_io=no
  165. debug_usb_io=no
  166. debug_usb_comms=no
  167. AC_ARG_ENABLE(verbose,
  168. AS_HELP_STRING([--enable-verbose],
  169. [Enable verbose JTAG I/O messages (for debugging).]),
  170. [
  171. debug_jtag_io=$enableval
  172. debug_usb_io=$enableval
  173. debug_usb_comms=$enableval
  174. ], [])
  175. AC_ARG_ENABLE(verbose_jtag_io,
  176. AS_HELP_STRING([--enable-verbose-jtag-io],
  177. [Enable verbose JTAG I/O messages (for debugging).]),
  178. [debug_jtag_io=$enableval], [])
  179. AC_ARG_ENABLE(verbose_usb_io,
  180. AS_HELP_STRING([--enable-verbose-usb-io],
  181. [Enable verbose USB I/O messages (for debugging)]),
  182. [debug_usb_io=$enableval], [])
  183. AC_ARG_ENABLE(verbose_usb_comms,
  184. AS_HELP_STRING([--enable-verbose-usb-comms],
  185. [Enable verbose USB communication messages (for debugging)]),
  186. [debug_usb_comms=$enableval], [])
  187. AC_MSG_CHECKING([whether to enable verbose JTAG I/O messages]);
  188. AC_MSG_RESULT($debug_jtag_io)
  189. if test $debug_jtag_io = yes; then
  190. AC_DEFINE([_DEBUG_JTAG_IO_],[1], [Print verbose JTAG I/O messages])
  191. fi
  192. AC_MSG_CHECKING([whether to enable verbose USB I/O messages]);
  193. AC_MSG_RESULT($debug_usb_io)
  194. if test $debug_usb_io = yes; then
  195. AC_DEFINE([_DEBUG_USB_IO_],[1], [Print verbose USB I/O messages])
  196. fi
  197. AC_MSG_CHECKING([whether to enable verbose USB communication messages]);
  198. AC_MSG_RESULT($debug_usb_comms)
  199. if test $debug_usb_comms = yes; then
  200. AC_DEFINE([_DEBUG_USB_COMMS_],[1], [Print verbose USB communication messages])
  201. fi
  202. AC_ARG_ENABLE(parport,
  203. AS_HELP_STRING([--enable-parport], [Enable building the pc parallel port driver]),
  204. [build_parport=$enableval], [build_parport=no])
  205. AC_ARG_ENABLE(dummy,
  206. AS_HELP_STRING([--enable-dummy], [Enable building the dummy port driver]),
  207. [build_dummy=$enableval], [build_dummy=no])
  208. case "${host_cpu}" in
  209. i?86|x86*)
  210. AC_ARG_ENABLE(parport_ppdev,
  211. AS_HELP_STRING([--enable-parport_ppdev], [Enable use of ppdev (/dev/parportN) for parport]),
  212. [parport_use_ppdev=$enableval], [parport_use_ppdev=no])
  213. ;;
  214. *)
  215. parport_use_ppdev=yes
  216. ;;
  217. esac
  218. AC_ARG_ENABLE(ft2232_libftdi,
  219. AS_HELP_STRING([--enable-ft2232_libftdi], [Enable building support for FT2232 based devices using the libftdi driver, opensource alternate of FTD2XX]),
  220. [build_ft2232_libftdi=$enableval], [build_ft2232_libftdi=no])
  221. AC_ARG_ENABLE(ft2232_ftd2xx,
  222. AS_HELP_STRING([--enable-ft2232_ftd2xx], [Enable building support for FT2232 based devices using the FTD2XX driver from ftdichip.com]),
  223. [build_ft2232_ftd2xx=$enableval], [build_ft2232_ftd2xx=no])
  224. AC_ARG_ENABLE(amtjtagaccel,
  225. AS_HELP_STRING([--enable-amtjtagaccel], [Enable building the Amontec JTAG-Accelerator driver]),
  226. [build_amtjtagaccel=$enableval], [build_amtjtagaccel=no])
  227. AC_ARG_ENABLE(ecosboard,
  228. AS_HELP_STRING([--enable-ecosboard], [Enable building support for eCosBoard based JTAG debugger]),
  229. [build_ecosboard=$enableval], [build_ecosboard=no])
  230. AC_ARG_ENABLE(ioutil,
  231. AS_HELP_STRING([--enable-ioutil], [Enable ioutil functions - useful for standalone OpenOCD implementations]),
  232. [build_ioutil=$enableval], [build_ioutil=no])
  233. AC_ARG_ENABLE(httpd,
  234. AS_HELP_STRING([--enable-httpd], [Enable builtin httpd server - useful for standalone OpenOCD implementations]),
  235. [build_httpd=$enableval], [build_httpd=no])
  236. case "${host_cpu}" in
  237. arm*)
  238. AC_ARG_ENABLE(ep93xx,
  239. AS_HELP_STRING([--enable-ep93xx], [Enable building support for EP93xx based SBCs]),
  240. [build_ep93xx=$enableval], [build_ep93xx=no])
  241. AC_ARG_ENABLE(at91rm9200,
  242. AS_HELP_STRING([--enable-at91rm9200], [Enable building support for AT91RM9200 based SBCs]),
  243. [build_at91rm9200=$enableval], [build_at91rm9200=no])
  244. ;;
  245. *)
  246. build_ep93xx=no
  247. build_at91rm9200=no
  248. ;;
  249. esac
  250. AC_ARG_ENABLE(gw16012,
  251. AS_HELP_STRING([--enable-gw16012], [Enable building support for the Gateworks GW16012 JTAG Programmer]),
  252. [build_gw16012=$enableval], [build_gw16012=no])
  253. AC_ARG_ENABLE(presto_libftdi,
  254. AS_HELP_STRING([--enable-presto_libftdi], [Enable building support for ASIX Presto Programmer using the libftdi driver]),
  255. [build_presto_libftdi=$enableval], [build_presto_libftdi=no])
  256. AC_ARG_ENABLE(presto_ftd2xx,
  257. AS_HELP_STRING([--enable-presto_ftd2xx], [Enable building support for ASIX Presto Programmer using the FTD2XX driver]),
  258. [build_presto_ftd2xx=$enableval], [build_presto_ftd2xx=no])
  259. AC_ARG_ENABLE(usbprog,
  260. AS_HELP_STRING([--enable-usbprog], [Enable building support for the usbprog JTAG Programmer]),
  261. [build_usbprog=$enableval], [build_usbprog=no])
  262. AC_ARG_ENABLE(oocd_trace,
  263. AS_HELP_STRING([--enable-oocd_trace], [Enable building support for the OpenOCD+trace ETM capture device]),
  264. [build_oocd_trace=$enableval], [build_oocd_trace=no])
  265. AC_ARG_ENABLE(jlink,
  266. AS_HELP_STRING([--enable-jlink], [Enable building support for the Segger J-Link JTAG Programmer]),
  267. [build_jlink=$enableval], [build_jlink=no])
  268. AC_ARG_ENABLE(vsllink,
  269. AS_HELP_STRING([--enable-vsllink], [Enable building support for the Versaloon-Link JTAG Programmer]),
  270. [build_vsllink=$enableval], [build_vsllink=no])
  271. AC_ARG_ENABLE(rlink,
  272. AS_HELP_STRING([--enable-rlink], [Enable building support for the Raisonance RLink JTAG Programmer]),
  273. [build_rlink=$enableval], [build_rlink=no])
  274. AC_ARG_ENABLE(arm-jtag-ew,
  275. AS_HELP_STRING([--enable-arm-jtag-ew], [Enable building support for the Olimex ARM-JTAG-EW Programmer]),
  276. [build_armjtagew=$enableval], [build_armjtagew=no])
  277. case $host in
  278. *-cygwin*)
  279. is_win32=yes
  280. AC_ARG_ENABLE(parport_giveio,
  281. AS_HELP_STRING([--enable-parport_giveio], [Enable use of giveio for parport instead of ioperm]),
  282. [parport_use_giveio=$enableval], [parport_use_giveio=no])
  283. AC_COMPILE_IFELSE(AC_LANG_PROGRAM([],[return __MINGW32__;]),[is_mingw=yes],[is_mingw=no])
  284. if test $is_mingw = yes; then
  285. AC_DEFINE(IS_MINGW, 1, [1 if building for MinGW.])
  286. parport_use_giveio=yes
  287. is_cygwin=no
  288. else
  289. is_cygwin=yes
  290. AC_DEFINE(IS_CYGWIN, 1, [1 if building for Cygwin.])
  291. fi
  292. AC_DEFINE(IS_WIN32, 1, [1 if building for Win32.])
  293. AC_DEFINE(IS_DARWIN, 0, [0 if not building for Darwin.])
  294. ;;
  295. *-mingw*)
  296. is_mingw=yes
  297. is_win32=yes
  298. parport_use_giveio=yes
  299. AC_DEFINE(IS_MINGW, 1, [1 if building for MinGW.])
  300. AC_DEFINE(IS_WIN32, 1, [1 if building for Win32.])
  301. AC_DEFINE(IS_DARWIN, 0, [0 if not building for Darwin.])
  302. ;;
  303. *darwin*)
  304. is_darwin=yes
  305. parport_use_giveio=no
  306. AC_DEFINE(IS_CYGWIN, 0, [0 if not building for Cygwin.])
  307. AC_DEFINE(IS_WIN32, 0, [0 if not building for Win32.])
  308. AC_DEFINE(IS_DARWIN, 1, [1 if building for Darwin.])
  309. ;;
  310. *)
  311. parport_use_giveio=no
  312. AC_DEFINE(IS_CYGWIN, 0, [0 if not building for Cygwin.])
  313. AC_DEFINE(IS_WIN32, 0, [0 if not building for Win32.])
  314. AC_DEFINE(IS_DARWIN, 0, [0 if not building for Darwin.])
  315. ;;
  316. esac
  317. if test $build_parport = yes; then
  318. build_bitbang=yes
  319. AC_DEFINE(BUILD_PARPORT, 1, [1 if you want parport.])
  320. else
  321. AC_DEFINE(BUILD_PARPORT, 0, [0 if you don't want parport.])
  322. fi
  323. if test $build_dummy = yes; then
  324. build_bitbang=yes
  325. AC_DEFINE(BUILD_DUMMY, 1, [1 if you want dummy driver.])
  326. else
  327. AC_DEFINE(BUILD_DUMMY, 0, [0 if you don't want dummy driver.])
  328. fi
  329. if test $build_ep93xx = yes; then
  330. build_bitbang=yes
  331. AC_DEFINE(BUILD_EP93XX, 1, [1 if you want ep93xx.])
  332. else
  333. AC_DEFINE(BUILD_EP93XX, 0, [0 if you don't want ep93xx.])
  334. fi
  335. if test $build_ecosboard = yes; then
  336. build_bitbang=yes
  337. AC_DEFINE(BUILD_ECOSBOARD, 1, [1 if you want eCosBoard.])
  338. else
  339. AC_DEFINE(BUILD_ECOSBOARD, 0, [0 if you don't want eCosBoard.])
  340. fi
  341. if test $build_ioutil = yes; then
  342. AC_DEFINE(BUILD_IOUTIL, 1, [1 if you want ioutils.])
  343. else
  344. AC_DEFINE(BUILD_IOUTIL, 0, [0 if you don't want ioutils.])
  345. fi
  346. if test $build_httpd = yes; then
  347. AC_DEFINE(BUILD_HTTPD, 1, [1 if you want httpd.])
  348. else
  349. AC_DEFINE(BUILD_HTTPD, 0, [0 if you don't want httpd.])
  350. fi
  351. if test $build_at91rm9200 = yes; then
  352. build_bitbang=yes
  353. AC_DEFINE(BUILD_AT91RM9200, 1, [1 if you want at91rm9200.])
  354. else
  355. AC_DEFINE(BUILD_AT91RM9200, 0, [0 if you don't want at91rm9200.])
  356. fi
  357. if test $parport_use_ppdev = yes; then
  358. AC_DEFINE(PARPORT_USE_PPDEV, 1, [1 if you want parport to use ppdev.])
  359. else
  360. AC_DEFINE(PARPORT_USE_PPDEV, 0, [0 if you don't want parport to use ppdev.])
  361. fi
  362. if test $parport_use_giveio = yes; then
  363. AC_DEFINE(PARPORT_USE_GIVEIO, 1, [1 if you want parport to use giveio.])
  364. else
  365. AC_DEFINE(PARPORT_USE_GIVEIO, 0, [0 if you don't want parport to use giveio.])
  366. fi
  367. if test $build_bitbang = yes; then
  368. AC_DEFINE(BUILD_BITBANG, 1, [1 if you want a bitbang interface.])
  369. else
  370. AC_DEFINE(BUILD_BITBANG, 0, [0 if you don't want a bitbang interface.])
  371. fi
  372. if test $build_ft2232_libftdi = yes; then
  373. AC_DEFINE(BUILD_FT2232_LIBFTDI, 1, [1 if you want libftdi ft2232.])
  374. else
  375. AC_DEFINE(BUILD_FT2232_LIBFTDI, 0, [0 if you don't want libftdi ft2232.])
  376. fi
  377. if test $build_ft2232_ftd2xx = yes; then
  378. AC_DEFINE(BUILD_FT2232_FTD2XX, 1, [1 if you want ftd2xx ft2232.])
  379. else
  380. AC_DEFINE(BUILD_FT2232_FTD2XX, 0, [0 if you don't want ftd2xx ft2232.])
  381. fi
  382. if test $build_amtjtagaccel = yes; then
  383. AC_DEFINE(BUILD_AMTJTAGACCEL, 1, [1 if you want the Amontec JTAG-Accelerator driver.])
  384. else
  385. AC_DEFINE(BUILD_AMTJTAGACCEL, 0, [0 if you don't want the Amontec JTAG-Accelerator driver.])
  386. fi
  387. if test $build_gw16012 = yes; then
  388. AC_DEFINE(BUILD_GW16012, 1, [1 if you want the Gateworks GW16012 driver.])
  389. else
  390. AC_DEFINE(BUILD_GW16012, 0, [0 if you don't want the Gateworks GW16012 driver.])
  391. fi
  392. if test $build_presto_libftdi = yes; then
  393. build_bitq=yes
  394. AC_DEFINE(BUILD_PRESTO_LIBFTDI, 1, [1 if you want the ASIX PRESTO driver using libftdi.])
  395. else
  396. AC_DEFINE(BUILD_PRESTO_LIBFTDI, 0, [0 if you don't want the ASIX PRESTO driver using libftdi.])
  397. fi
  398. if test $build_presto_ftd2xx = yes; then
  399. build_bitq=yes
  400. AC_DEFINE(BUILD_PRESTO_FTD2XX, 1, [1 if you want the ASIX PRESTO driver using FTD2XX.])
  401. else
  402. AC_DEFINE(BUILD_PRESTO_FTD2XX, 0, [0 if you don't want the ASIX PRESTO driver using FTD2XX.])
  403. fi
  404. if test $build_bitq = yes; then
  405. AC_DEFINE(BUILD_BITQ, 1, [1 if you want a bitq interface.])
  406. else
  407. AC_DEFINE(BUILD_BITQ, 0, [0 if you don't want a bitq interface.])
  408. fi
  409. if test $build_usbprog = yes; then
  410. AC_DEFINE(BUILD_USBPROG, 1, [1 if you want the usbprog JTAG driver.])
  411. else
  412. AC_DEFINE(BUILD_USBPROG, 0, [0 if you don't want the usbprog JTAG driver.])
  413. fi
  414. if test $build_oocd_trace = yes; then
  415. AC_DEFINE(BUILD_OOCD_TRACE, 1, [1 if you want the OpenOCD+trace ETM capture driver.])
  416. else
  417. AC_DEFINE(BUILD_OOCD_TRACE, 0, [0 if you don't want the OpenOCD+trace ETM capture driver.])
  418. fi
  419. if test $build_jlink = yes; then
  420. AC_DEFINE(BUILD_JLINK, 1, [1 if you want the J-Link JTAG driver.])
  421. else
  422. AC_DEFINE(BUILD_JLINK, 0, [0 if you don't want the J-Link JTAG driver.])
  423. fi
  424. if test $build_vsllink = yes; then
  425. AC_DEFINE(BUILD_VSLLINK, 1, [1 if you want the Versaloon-Link JTAG driver.])
  426. else
  427. AC_DEFINE(BUILD_VSLLINK, 0, [0 if you don't want the Versaloon-Link JTAG driver.])
  428. fi
  429. if test $build_rlink = yes; then
  430. AC_DEFINE(BUILD_RLINK, 1, [1 if you want the RLink JTAG driver.])
  431. else
  432. AC_DEFINE(BUILD_RLINK, 0, [0 if you don't want the RLink JTAG driver.])
  433. fi
  434. if test $build_armjtagew = yes; then
  435. AC_DEFINE(BUILD_ARMJTAGEW, 1, [1 if you want the ARM-JTAG-EW JTAG driver.])
  436. else
  437. AC_DEFINE(BUILD_ARMJTAGEW, 0, [0 if you don't want the ARM-JTAG-EW JTAG driver.])
  438. fi
  439. #-- Deal with MingW/Cygwin FTD2XX issues
  440. if test $is_win32 = yes; then
  441. if test "${with_ftd2xx_linux_tardir+set}" = set
  442. then
  443. AC_MSG_ERROR([The option: with_ftd2xx_linux_tardir is for LINUX only.])
  444. fi
  445. if test $build_ft2232_ftd2xx = yes ; then
  446. AC_MSG_CHECKING([for ftd2xx.lib exists (win32)])
  447. # if we are given a zipdir...
  448. if test "${with_ftd2xx_win32_zipdir+set}" = set
  449. then
  450. # Set the CFLAGS for "ftd2xx.h"
  451. f=$with_ftd2xx_win32_zipdir/ftd2xx.h
  452. if test ! -f $f ; then
  453. AC_MSG_ERROR([File: $f cannot be found])
  454. fi
  455. CFLAGS="$CFLAGS -I$with_ftd2xx_win32_zipdir"
  456. # And calculate the LDFLAGS for the machine
  457. case "$host_cpu" in
  458. i?86|x86_*)
  459. LDFLAGS="$LDFLAGS -L$with_ftd2xx_win32_zipdir/i386"
  460. LIBS="$LIBS -lftd2xx"
  461. f=$with_ftd2xx_win32_zipdir/i386/ftd2xx.lib
  462. ;;
  463. amd64)
  464. LDFLAGS="$LDFLAGS -L$with_ftd2xx_win32_zipdir/amd64"
  465. LIBS="$LIBS -lftd2xx"
  466. f=$with_ftd2xx_win32_zipdir/amd64/ftd2xx.lib
  467. ;;
  468. *)
  469. AC_MSG_ERROR([Unknown Win32 host cpu: $host_cpu])
  470. ;;
  471. esac
  472. if test ! -f $f ; then
  473. AC_MSG_ERROR([Library: $f not found])
  474. fi
  475. else
  476. LIBS="$LIBS -lftd2xx"
  477. AC_MSG_WARN([ASSUMPTION: The (win32) FTDICHIP.COM files: ftd2xx.h and ftd2xx.lib are in a proper place])
  478. fi
  479. fi
  480. fi
  481. if test $is_darwin = yes ; then
  482. if test "${with_ftd2xx_win32_zipdir+set}" = set
  483. then
  484. AC_MSG_ERROR([The option: --with-ftd2xx-win32-zipdir is for win32 only])
  485. fi
  486. if test "${with_ftd2xx_linux_tardir+set}" = set
  487. then
  488. AC_MSG_ERROR([The option: with_ftd2xx_linux_tardir is for LINUX only.])
  489. fi
  490. if test $build_ft2232_ftd2xx = yes ; then
  491. AC_MSG_CHECKING([for libftd2xx.a (darwin)])
  492. if test ! -f /usr/local/include/ftd2xx.h ; then
  493. AC_MSG_ERROR([ftd2xx library from FTDICHIP.com seems to be missing, cannot find: /usr/local/include/ftd2xx.h])
  494. fi
  495. CFLAGS="$CFLAGS -I/usr/local/include"
  496. LDFLAGS="$LDFLAGS -L/usr/local/lib"
  497. LIBS="$LIBS -lftd2xx"
  498. AC_MSG_RESULT([-L/usr/local/lib -lftd2xx])
  499. fi
  500. fi
  501. if test $is_win32 = no && test $is_darwin = no ; then
  502. if test "${with_ftd2xx_win32_zipdir+set}" = set
  503. then
  504. AC_MSG_ERROR([The option: --with-ftd2xx-win32-zipdir is for win32 only])
  505. fi
  506. if test $build_ft2232_ftd2xx = yes ; then
  507. # Must be linux
  508. if test $host_os != linux-gnu && test $host_os != linux ; then
  509. AC_MSG_ERROR([The (linux) ftd2xx library from FTDICHIP.com is linux only. Try --enable-ft2232-libftdi instead])
  510. fi
  511. # Are we given a TAR directory?
  512. if test "${with_ftd2xx_linux_tardir+set}" = set
  513. then
  514. AC_MSG_CHECKING([uninstalled ftd2xx distribution])
  515. # The .H file is simple..
  516. FTD2XX_H=$with_ftd2xx_linux_tardir/ftd2xx.h
  517. if test ! -f "${FTD2XX_H}"; then
  518. AC_MSG_ERROR([Option: --with-ftd2xx-linux-tardir appears wrong, cannot find: ${FTD2XX_H}])
  519. fi
  520. CFLAGS="$CFLAGS -I$with_ftd2xx_linux_tardir"
  521. FTD2XX_LDFLAGS="-L$with_ftd2xx_linux_tardir"
  522. FTD2XX_LIB="-lftd2xx"
  523. if test $with_ftd2xx_lib != shared; then
  524. # Test #1 - Future proof - if/when ftdichip fixes their distro.
  525. # Try it with the simple ".a" suffix.
  526. FTD2XX_LIB="$with_ftd2xx_linux_tardir/static_lib/libftd2xx.a"
  527. if test -f "${FTD2XX_LIB}"; then
  528. FTD2XX_LDFLAGS="${FTD2XX_LDFLAGS}/static_lib"
  529. else
  530. # Test Number2.
  531. # Grr.. perhaps it exists as a version number?
  532. FTD2XX_LIB="$with_ftd2xx_linux_tardir/static_lib/libftd2xx.a.*.*.*"
  533. count=`ls ${FTD2XX_LIB} | wc -l`
  534. if test $count -gt 1 ; then
  535. AC_MSG_ERROR([Multiple libftd2xx.a files found in: $with_ftd2xx_linux_tardir/static_lib sorry cannot handle this yet])
  536. fi
  537. if test $count -ne 1 ; then
  538. AC_MSG_ERROR([Not found: $f, option: --with-ftd2xx-linux-tardir appears to be wrong])
  539. fi
  540. # Because the "-l" rules do not understand version numbers...
  541. # we will just stuff the absolute path onto the LIBS variable
  542. FTD2XX_LIB="`ls ${FTD2XX_LIB}` -lpthread"
  543. FTD2XX_LDFLAGS=""
  544. fi
  545. fi
  546. LDFLAGS="${LDFLAGS} ${FTD2XX_LDFLAGS}"
  547. LIBS="${LIBS} ${FTD2XX_LIB}"
  548. AC_MSG_RESULT([${FTD2XX_LDFLAGS} ${FTD2XX_LIB}])
  549. else
  550. AC_CHECK_HEADER([ftd2xx.h],[],[
  551. AC_MSG_ERROR([You seem to be missing the FTD2xx driver header file.])
  552. ])
  553. AC_SEARCH_LIBS([FT_GetLibraryVersion],[ftd2xx],,[
  554. AC_MSG_ERROR([You appear to be missing the FTD2xx driver library.])
  555. ],[])
  556. fi
  557. fi
  558. fi
  559. if test $build_ft2232_ftd2xx = yes; then
  560. # Before we go any further - make sure we can *BUILD* and *RUN*
  561. # a simple app with the "ftd2xx.lib" file - in what ever form we where given
  562. # We should be able to compile, link and run this test program now
  563. AC_MSG_CHECKING([whether ftd2xx library works])
  564. #
  565. # Save the LDFLAGS for later..
  566. LDFLAGS_SAVE=$LDFLAGS
  567. CFLAGS_SAVE=$CFLAGS
  568. _LDFLAGS=`eval echo $LDFLAGS`
  569. _CFLAGS=`eval echo $CFLAGS`
  570. LDFLAGS=$_LDFLAGS
  571. CFLAGS=$_CFLAGS
  572. AC_RUN_IFELSE(
  573. [
  574. #include "confdefs.h"
  575. #if IS_WIN32
  576. #include "windows.h"
  577. #endif
  578. #include <stdio.h>
  579. #include <ftd2xx.h>
  580. int
  581. main( int argc, char **argv )
  582. {
  583. DWORD x;
  584. FT_GetLibraryVersion( &x );
  585. return 0;
  586. }
  587. ], [ AC_MSG_RESULT([Success!])] , [ AC_MSG_ERROR([Cannot build & run test program using ftd2xx.lib]) ] )
  588. LDFLAGS=$LDFLAGS_SAVE
  589. CFLAGS=$CFLAGS_SAVE
  590. fi
  591. if test $build_ft2232_libftdi = yes ; then
  592. # We assume: the package is preinstalled in the proper place
  593. # these present as 2 libraries..
  594. LIBS="$LIBS -lftdi -lusb"
  595. #
  596. # Try to build a small program.
  597. AC_MSG_CHECKING([Build & Link with libftdi...])
  598. LDFLAGS_SAVE=$LDFLAGS
  599. CFLAGS_SAVE=$CFLAGS
  600. _LDFLAGS=`eval echo $LDFLAGS`
  601. _CFLAGS=`eval echo $CFLAGS`
  602. LDFLAGS=$_LDFLAGS
  603. CFLAGS=$_CFLAGS
  604. AC_RUN_IFELSE(
  605. [
  606. #include <stdio.h>
  607. #include <ftdi.h>
  608. int
  609. main( int argc, char **argv )
  610. {
  611. struct ftdi_context *p;
  612. p = ftdi_new();
  613. if( p != NULL ){
  614. return 0;
  615. } else {
  616. fprintf( stderr, "calling ftdi_new() failed\n");
  617. return 1;
  618. }
  619. }
  620. ]
  621. ,
  622. [ AC_MSG_RESULT([Success]) ]
  623. ,
  624. [ AC_MSG_ERROR([Cannot build & run test program using libftdi]) ] )
  625. # Restore the 'unexpanded ldflags'
  626. LDFLAGS=$LDFLAGS_SAVE
  627. CFLAGS=$CFLAGS_SAVE
  628. fi
  629. AM_CONFIG_HEADER(config.h)
  630. AM_INIT_AUTOMAKE(openocd, 1.0)
  631. AM_MAINTAINER_MODE
  632. AM_CONDITIONAL(RELEASE, test $build_release = yes)
  633. AM_CONDITIONAL(PARPORT, test $build_parport = yes)
  634. AM_CONDITIONAL(DUMMY, test $build_dummy = yes)
  635. AM_CONDITIONAL(GIVEIO, test $parport_use_giveio = yes)
  636. AM_CONDITIONAL(EP93XX, test $build_ep93xx = yes)
  637. AM_CONDITIONAL(ECOSBOARD, test $build_ecosboard = yes)
  638. AM_CONDITIONAL(IOUTIL, test $build_ioutil = yes)
  639. AM_CONDITIONAL(HTTPD, test $build_httpd = yes)
  640. AM_CONDITIONAL(AT91RM9200, test $build_at91rm9200 = yes)
  641. AM_CONDITIONAL(BITBANG, test $build_bitbang = yes)
  642. AM_CONDITIONAL(FT2232_LIBFTDI, test $build_ft2232_libftdi = yes)
  643. AM_CONDITIONAL(FT2232_FTD2XX, test $build_ft2232_ftd2xx = yes)
  644. AM_CONDITIONAL(AMTJTAGACCEL, test $build_amtjtagaccel = yes)
  645. AM_CONDITIONAL(GW16012, test $build_gw16012 = yes)
  646. AM_CONDITIONAL(PRESTO_LIBFTDI, test $build_presto_libftdi = yes)
  647. AM_CONDITIONAL(PRESTO_FTD2XX, test $build_presto_ftd2xx = yes)
  648. AM_CONDITIONAL(USBPROG, test $build_usbprog = yes)
  649. AM_CONDITIONAL(OOCD_TRACE, test $build_oocd_trace = yes)
  650. AM_CONDITIONAL(JLINK, test $build_jlink = yes)
  651. AM_CONDITIONAL(VSLLINK, test $build_vsllink = yes)
  652. AM_CONDITIONAL(RLINK, test $build_rlink = yes)
  653. AM_CONDITIONAL(ARMJTAGEW, test $build_armjtagew = yes)
  654. AM_CONDITIONAL(IS_CYGWIN, test $is_cygwin = yes)
  655. AM_CONDITIONAL(IS_MINGW, test $is_mingw = yes)
  656. AM_CONDITIONAL(IS_WIN32, test $is_win32 = yes)
  657. AM_CONDITIONAL(IS_DARWIN, test $is_darwin = yes)
  658. AM_CONDITIONAL(BITQ, test $build_bitq = yes)
  659. AC_LANG_C
  660. AC_PROG_CC
  661. AC_PROG_RANLIB
  662. # set default gcc warnings
  663. GCC_WARNINGS="-Wall -Wstrict-prototypes -Wformat-security"
  664. if test "${gcc_wextra}" = yes; then
  665. GCC_WARNINGS="${GCC_WARNINGS} -Wextra -Wno-unused-parameter"
  666. GCC_WARNINGS="${GCC_WARNINGS} -Wbad-function-cast"
  667. GCC_WARNINGS="${GCC_WARNINGS} -Wcast-align"
  668. GCC_WARNINGS="${GCC_WARNINGS} -Wredundant-decls"
  669. fi
  670. if test "${gcc_werror}" = yes; then
  671. GCC_WARNINGS="${GCC_WARNINGS} -Werror"
  672. fi
  673. # overide default gcc cflags
  674. if test $gcc_warnings = yes; then
  675. CFLAGS="$CFLAGS $GCC_WARNINGS"
  676. fi
  677. # Setup for compiling build tools
  678. AC_MSG_CHECKING([for a C compiler for build tools])
  679. if test $cross_compiling = yes; then
  680. AC_CHECK_PROGS(CC_FOR_BUILD, gcc cc)
  681. CFLAGS_FOR_BUILD="-g -O2 $GCC_WARNINGS"
  682. else
  683. CC_FOR_BUILD=$CC
  684. CFLAGS_FOR_BUILD=$CFLAGS
  685. fi
  686. AC_MSG_RESULT([$CC_FOR_BUILD])
  687. AC_SUBST(CC_FOR_BUILD)
  688. AC_SUBST(CFLAGS_FOR_BUILD)
  689. AC_MSG_CHECKING([for suffix of executable build tools])
  690. if test $cross_compiling = yes; then
  691. cat >conftest.c <<\_______EOF
  692. int main ()
  693. {
  694. exit (0);
  695. }
  696. _______EOF
  697. for i in .exe ""; do
  698. compile="$CC_FOR_BUILD conftest.c -o conftest$i"
  699. if AC_TRY_EVAL(compile); then
  700. if (./conftest) 2>&AC_FD_CC; then
  701. EXEEXT_FOR_BUILD=$i
  702. break
  703. fi
  704. fi
  705. done
  706. rm -f conftest*
  707. if test "${EXEEXT_FOR_BUILD+set}" != set; then
  708. AC_MSG_ERROR([Cannot determine suffix of executable build tools])
  709. fi
  710. else
  711. EXEEXT_FOR_BUILD=$EXEEXT
  712. fi
  713. AC_MSG_RESULT([$EXEEXT_FOR_BUILD])
  714. AC_SUBST(EXEEXT_FOR_BUILD)
  715. AC_OUTPUT(Makefile src/Makefile src/helper/Makefile src/jtag/Makefile src/xsvf/Makefile src/svf/Makefile src/target/Makefile src/server/Makefile src/flash/Makefile src/pld/Makefile doc/Makefile)