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.
 
 
 
 
 
 

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