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