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.
 
 
 
 
 
 

976 lines
29 KiB

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