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.
 
 
 
 
 
 

846 lines
26 KiB

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