cdee2b853a1e6824bb1412f19733d78966f52c01
[openocd.git] / configure.in
1 AC_INIT(configure.in)
2
3 AC_SEARCH_LIBS([ioperm], [ioperm])
4
5 AC_CANONICAL_HOST
6
7 AC_C_BIGENDIAN
8
9 AC_CHECK_FUNCS(strndup)
10 AC_CHECK_FUNCS(strnlen)
11 AC_CHECK_FUNCS(gettimeofday)
12 AC_CHECK_FUNCS(usleep)
13
14 build_bitbang=no
15 is_cygwin=no
16 is_mingw=no
17 is_win32=no
18
19 AC_ARG_ENABLE(parport,
20 AS_HELP_STRING([--enable-parport], [Enable building the pc parallel port driver]),
21 [build_parport=$enableval], [build_parport=no])
22
23 AC_ARG_ENABLE(parport_ppdev,
24 AS_HELP_STRING([--enable-parport_ppdev], [Enable use of ppdev (/dev/parportN) for parport]),
25 [parport_use_ppdev=$enableval], [parport_use_ppdev=no])
26
27 AC_ARG_ENABLE(ft2232_libftdi,
28 AS_HELP_STRING([--enable-ft2232_libftdi], [Enable building support for FT2232 based devices using the libftdi driver]),
29 [build_ft2232_libftdi=$enableval], [build_ft2232_libftdi=no])
30
31 AC_ARG_ENABLE(ft2232_ftd2xx,
32 AS_HELP_STRING([--enable-ft2232_ftd2xx], [Enable building support for FT2232 based devices using the FTD2XX driver]),
33 [build_ft2232_ftd2xx=$enableval], [build_ft2232_ftd2xx=no])
34
35 AC_ARG_ENABLE(amtjtagaccel,
36 AS_HELP_STRING([--enable-amtjtagaccel], [Enable building the Amontec JTAG-Accelerator driver]),
37 [build_amtjtagaccel=$enableval], [build_amtjtagaccel=no])
38
39 AC_ARG_ENABLE(ep93xx,
40 AS_HELP_STRING([--enable-ep93xx], [Enable building support for EP93xx based SBCs]),
41 [build_ep93xx=$enableval], [build_ep93xx=no])
42
43 AC_ARG_ENABLE(at91rm9200,
44 AS_HELP_STRING([--enable-at91rm9200], [Enable building support for AT91RM9200 based SBCs]),
45 [build_at91rm9200=$enableval], [build_at91rm9200=no])
46
47 AC_ARG_ENABLE(gw16012,
48 AS_HELP_STRING([--enable-gw16012], [Enable building support for the Gateworks GW16012 JTAG Programmer]),
49 [build_gw16012=$enableval], [build_gw16012=no])
50
51 AC_ARG_WITH(ftd2xx,
52 [AS_HELP_STRING(--with-ftd2xx,
53 [Where libftd2xx can be found <default=search>])],
54 [],
55 with_ftd2xx=search)
56
57 case $host in
58 *-*-cygwin*)
59 is_win32=yes
60
61 AC_ARG_ENABLE(parport_giveio,
62 AS_HELP_STRING([--enable-parport_giveio], [Enable use of giveio for parport instead of ioperm]),
63 [parport_use_giveio=$enableval], [parport_use_giveio=no])
64
65 AC_COMPILE_IFELSE(AC_LANG_PROGRAM([],[return __MINGW32__;]),[is_mingw=yes],[is_mingw=no])
66 if test $is_mingw = yes; then
67 AC_DEFINE(IS_MINGW, 1, [1 if building for MinGW.])
68 parport_use_giveio=yes
69 is_cygwin=no
70 else
71 is_cygwin=yes
72 AC_DEFINE(IS_CYGWIN, 1, [1 if building for Cygwin.])
73 fi
74
75 AC_DEFINE(IS_WIN32, 1, [1 if building for Win32.])
76 ;;
77 *-*-mingw*)
78 is_mingw=yes
79 is_win32=yes
80
81 parport_use_giveio=yes
82
83 AC_DEFINE(IS_MINGW, 1, [1 if building for MinGW.])
84 AC_DEFINE(IS_WIN32, 1, [1 if building for Win32.])
85 ;;
86 *)
87 parport_use_giveio=no
88 AC_DEFINE(IS_CYGWIN, 0, [0 if not building for Cygwin.])
89 AC_DEFINE(IS_WIN32, 0, [0 if not building for Win32.])
90 ;;
91 esac
92
93 if test $build_parport = yes; then
94 build_bitbang=yes
95 AC_DEFINE(BUILD_PARPORT, 1, [1 if you want parport.])
96 else
97 AC_DEFINE(BUILD_PARPORT, 0, [0 if you don't want parport.])
98 fi
99
100 if test $build_ep93xx = yes; then
101 build_bitbang=yes
102 AC_DEFINE(BUILD_EP93XX, 1, [1 if you want ep93xx.])
103 else
104 AC_DEFINE(BUILD_EP93XX, 0, [0 if you don't want ep93xx.])
105 fi
106
107 if test $build_at91rm9200 = yes; then
108 build_bitbang=yes
109 AC_DEFINE(BUILD_AT91RM9200, 1, [1 if you want at91rm9200.])
110 else
111 AC_DEFINE(BUILD_AT91RM9200, 0, [0 if you don't want at91rm9200.])
112 fi
113
114 if test $parport_use_ppdev = yes; then
115 AC_DEFINE(PARPORT_USE_PPDEV, 1, [1 if you want parport to use ppdev.])
116 else
117 AC_DEFINE(PARPORT_USE_PPDEV, 0, [0 if you don't want parport to use ppdev.])
118 fi
119
120 if test $parport_use_giveio = yes; then
121 AC_DEFINE(PARPORT_USE_GIVEIO, 1, [1 if you want parport to use giveio.])
122 else
123 AC_DEFINE(PARPORT_USE_GIVEIO, 0, [0 if you don't want parport to use giveio.])
124 fi
125
126 if test $build_bitbang = yes; then
127 AC_DEFINE(BUILD_BITBANG, 1, [1 if you want a bitbang interface.])
128 else
129 AC_DEFINE(BUILD_BITBANG, 0, [0 if you don't want a bitbang interface.])
130 fi
131
132 if test $build_ft2232_libftdi = yes; then
133 AC_DEFINE(BUILD_FT2232_LIBFTDI, 1, [1 if you want libftdi ft2232.])
134 else
135 AC_DEFINE(BUILD_FT2232_LIBFTDI, 0, [0 if you don't want libftdi ft2232.])
136 fi
137
138 if test $build_ft2232_ftd2xx = yes; then
139 AC_DEFINE(BUILD_FT2232_FTD2XX, 1, [1 if you want ftd2xx ft2232.])
140 else
141 AC_DEFINE(BUILD_FT2232_FTD2XX, 0, [0 if you don't want ftd2xx ft2232.])
142 fi
143
144 if test $build_amtjtagaccel = yes; then
145 AC_DEFINE(BUILD_AMTJTAGACCEL, 1, [1 if you want the Amontec JTAG-Accelerator driver.])
146 else
147 AC_DEFINE(BUILD_AMTJTAGACCEL, 0, [0 if you don't want the Amontec JTAG-Accelerator driver.])
148 fi
149
150 if test $build_gw16012 = yes; then
151 AC_DEFINE(BUILD_GW16012, 1, [1 if you want the Gateworks GW16012 driver.])
152 else
153 AC_DEFINE(BUILD_GW16012, 0, [0 if you don't want the Gateworks GW16012 driver.])
154 fi
155
156 AM_CONFIG_HEADER(config.h)
157 AM_INIT_AUTOMAKE(openocd, 0.1)
158
159 AM_CONDITIONAL(PARPORT, test $build_parport = yes)
160 AM_CONDITIONAL(GIVEIO, test $parport_use_giveio = yes)
161 AM_CONDITIONAL(EP93XX, test $build_ep93xx = yes)
162 AM_CONDITIONAL(AT91RM9200, test $build_at91rm9200 = yes)
163 AM_CONDITIONAL(BITBANG, test $build_bitbang = yes)
164 AM_CONDITIONAL(FT2232_LIBFTDI, test $build_ft2232_libftdi = yes)
165 AM_CONDITIONAL(FT2232_FTD2XX, test $build_ft2232_ftd2xx = yes)
166 AM_CONDITIONAL(AMTJTAGACCEL, test $build_amtjtagaccel = yes)
167 AM_CONDITIONAL(GW16012, test $build_gw16012 = yes)
168 AM_CONDITIONAL(IS_CYGWIN, test $is_cygwin = yes)
169 AM_CONDITIONAL(IS_MINGW, test $is_mingw = yes)
170 AM_CONDITIONAL(IS_WIN32, test $is_win32 = yes)
171 AM_CONDITIONAL(FTD2XXDIR, test $with_ftd2xx != search)
172
173 AC_LANG_C
174 AC_PROG_CC
175 AC_PROG_RANLIB
176
177 AC_SUBST(WITH_FTD2XX, $with_ftd2xx)
178
179 AC_OUTPUT(Makefile src/Makefile src/helper/Makefile src/jtag/Makefile src/xsvf/Makefile src/target/Makefile src/server/Makefile src/flash/Makefile src/pld/Makefile)

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)