blob: a7040536f8854bf55297ab8e27fa3072e26a64c6 [file] [log] [blame]
Patrick Venturec7ca2912018-11-02 11:38:33 -07001# Initialization
2AC_PREREQ([2.69])
Patrick Venturea29216e2019-06-27 11:06:36 -07003AC_INIT([phosphor-ipmi-flash], [1.0], [https://github.com/openbmc/phosphor-ipmi-flash/issues])
Patrick Venturec7ca2912018-11-02 11:38:33 -07004AC_LANG([C++])
5AC_CONFIG_HEADERS([config.h])
Patrick Venture30993b32018-11-28 14:52:00 -08006AC_CONFIG_MACRO_DIRS([m4])
Patrick Venture9dc342a2019-03-18 08:43:36 -07007AM_INIT_AUTOMAKE([subdir-objects -Wall -Wno-portability -Werror foreign dist-xz])
Patrick Venturec7ca2912018-11-02 11:38:33 -07008AM_SILENT_RULES([yes])
9
Patrick Venture2f3b4b62019-03-08 13:22:40 -080010# Make sure the default CFLAGS of `-O2 -g` don't override CODE_COVERAGE_CFLAGS
11# It is important that this comes before AC_PROG_C{C,XX}, as we are attempting
12# to stop them from populating default CFLAGS and CXXFLAGS.
13AS_IF([test "x$enable_tests" = "xno"], [enable_code_coverage=no])
14AS_IF([test "x$enable_code_coverage" != "xno"], [
15 AS_IF([test "x${CXXFLAGS+set}" != "xset"], [
16 AC_SUBST(CXXFLAGS, [""])
17 ])
18 AS_IF([test "x${CFLAGS+set}" != "xset"], [
19 AC_SUBST(CFLAGS, [""])
20 ])
21])
22
Patrick Ventureac570a12019-05-08 08:53:16 -070023# If building tests, enable both hardware options that are configuration controlled
24AS_IF([test "x$enable_tests" = "xyes"], [enable_static_layout=yes])
25AS_IF([test "x$enable_tests" = "xyes"], [enable_tarball_ubi=yes])
26
27AS_IF([test "x$enable_tests" = "xyes"], [enable_pci_bridge=yes])
28AS_IF([test "x$enable_tests" = "xyes"], [enable_aspeed_p2a=yes])
29
30# You can only build main.o with one of the lpc implementations, however, specify both.
31AS_IF([test "x$enable_tests" = "xyes"], [enable_lpc_bridge=yes])
32AS_IF([test "x$enable_tests" = "xyes"], [enable_aspeed_lpc=yes])
33AS_IF([test "x$enable_tests" = "xyes"], [enable_nuvoton_lpc=yes])
34
Patrick Venture9efef5d2019-06-19 08:45:44 -070035# If building tests, enable building all cleanup handler options.
36AS_IF([test "x$enable_tests" = "xyes"], [enable_cleanup_delete=yes])
37
Patrick Venturec7ca2912018-11-02 11:38:33 -070038# Checks for programs.
39AC_PROG_CXX
40AM_PROG_AR
41AC_PROG_INSTALL
42AC_PROG_MAKE_SET
43
44# Checks for typedefs, structures, and compiler characteristics.
45AX_CXX_COMPILE_STDCXX_17([noext])
46AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS])
47
48# Checks for library functions.
49LT_INIT # Required for systemd linking
50
Patrick Venturec2298de2019-06-26 19:12:12 -070051# Enable building the host tool (default: yes)
52AC_ARG_ENABLE([build-host-tool],
53 AC_HELP_STRING([--disable-build-host-tool], [Disable building the host tool])
Patrick Venture4b4ea212018-11-21 21:23:53 -080054)
Patrick Venturec2298de2019-06-26 19:12:12 -070055AM_CONDITIONAL([BUILD_HOST_TOOL], [test "x$enable_build_host_tool" != "xno"])
56
Patrick Venture0d3b8722019-06-27 07:04:06 -070057# Enable building the bmc (default: yes)
58AC_ARG_ENABLE([build-bmc-blob-handler],
59 AC_HELP_STRING([--disable-build-bmc-blob-handler], [Disable buliding the BMC BLOB handler])
60)
61AM_CONDITIONAL([BUILD_BMC_HANDLER], [test "x$enable_build_bmc_blob_handler" != "xno"])
62
Patrick Venturec37fe1e2019-06-27 07:49:12 -070063# Build the BMC by default, so check if set to no.
64AS_IF([test "x$enable_build_bmc_blob_handler" != "xno"], [
Patrick Venturec2298de2019-06-26 19:12:12 -070065 PKG_CHECK_MODULES(
66 [SDBUSPLUS],
67 [sdbusplus],
68 [AC_DEFINE(HAVE_SDBUSPLUS, [1], [Found openbmc/sdbusplus package])],
69 [AC_MSG_ERROR([The openbmc/sdbusplus package is required])]
70 )
71
72 PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging])
Patrick Venture84778b82019-06-26 20:11:09 -070073
74 AC_CHECK_HEADER(
75 [blobs-ipmid/blobs.hpp],
76 [],
77 [AC_MSG_ERROR(["phosphor-ipmi-blobs required and not found."])]
78 )
Patrick Venturec2298de2019-06-26 19:12:12 -070079])
80
Patrick Venturec37fe1e2019-06-27 07:49:12 -070081# If not building the host-tool, we're building the BMC.
82AS_IF([test "x$enable_build_host_tool" != "xno"], [
83 PKG_CHECK_MODULES(
84 [PCILIB],
85 [libpci],
86 [],
87 [AC_MSG_ERROR([Could not find libpci... pciutils package required])]
88 )
89])
90
Patrick Venturec2298de2019-06-26 19:12:12 -070091# These packages are required for both the BMC and the host-tool.
Patrick Venture8b3b3252019-03-07 07:50:13 -080092PKG_CHECK_MODULES(
93 [IPMIBLOB],
94 [ipmiblob],
95 [],
96 [AC_MSG_ERROR(
97 [Could not find ipmiblob...openbmc/ipmi-blob-tool package required])
98 ]
99)
Patrick Venturec7ca2912018-11-02 11:38:33 -0700100AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])])
101
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700102# Configurability
Patrick Venturecf10cda2019-05-15 10:35:10 -0700103
Patrick Venture6f81b162019-05-20 14:02:59 -0700104# Enable the reboot update mechanism
105AC_ARG_ENABLE([reboot-update],
106 AS_HELP_STRING([--enable-reboot-update],
107 [Enable use of reboot update mechanism.]))
108AS_IF([test "x$enable_reboot_update" = "xyes"], [
109 AX_APPEND_COMPILE_FLAGS([-DENABLE_REBOOT_UPDATE], [CXXFLAGS])
110])
111
Patrick Venture0d3b8722019-06-27 07:04:06 -0700112# Enable the cleanup handle that deletes the temporary files. (default: no)
Patrick Venture9efef5d2019-06-19 08:45:44 -0700113AC_ARG_ENABLE([cleanup-delete],
114 AS_HELP_STRING([--enable-cleanup-delete],
115 [Enable use of the delete files cleanup mechanism.]))
116AM_CONDITIONAL([BUILD_CLEANUP_DELETE], [test "x$enable_cleanup_delete" = "xyes"])
117
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700118# Enable static layout for firmware image staging.
119AC_ARG_ENABLE([static-layout],
120 AS_HELP_STRING([--enable-static-layout],
121 [Enable static layout firmware update via Blobs]))
122AS_IF([test "x$enable_static_layout" = "xyes"], [
123 AX_APPEND_COMPILE_FLAGS([-DENABLE_STATIC_LAYOUT], [CXXFLAGS])
124])
Patrick Ventured46b8112018-11-15 13:38:55 -0800125# Enable tarball for firmware image staging.
126AC_ARG_ENABLE([tarball-ubi],
127 AS_HELP_STRING([--enable-tarball-ubi],
128 [Enable tarball firmware update via Blobs]))
Patrick Venture80bfa672019-05-08 15:24:48 -0700129AS_IF([test "x$enable_tarball_ubi" = "xyes"], [
Patrick Ventured46b8112018-11-15 13:38:55 -0800130 AX_APPEND_COMPILE_FLAGS([-DENABLE_TARBALL_UBI], [CXXFLAGS])
131])
Patrick Venture002916a2018-11-15 10:38:07 -0800132
Patrick Venture4306f682018-11-06 11:06:02 -0800133# Enable P2A, and or LPC (block-transfer is always enabled).
Patrick Venture192d60f2018-11-06 11:11:59 -0800134AC_ARG_ENABLE([pci-bridge],
135 AS_HELP_STRING([--enable-pci-bridge],
136 [Enable pci-bridge transport mechanism]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700137AM_CONDITIONAL(ENABLE_PCI_BRIDGE, [test "x$enable_pci_bridge" = "xyes"])
Patrick Venture192d60f2018-11-06 11:11:59 -0800138AS_IF([test "x$enable_pci_bridge" = "xyes"], [
139 AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS])
140])
141AC_ARG_ENABLE([lpc-bridge],
142 AS_HELP_STRING([--enable-lpc-bridge],
143 [Enable lpc-bridge transport mechanism]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700144AM_CONDITIONAL(ENABLE_LPC_BRIDGE, [test "x$enable_lpc_bridge" = "xyes"])
Patrick Venture192d60f2018-11-06 11:11:59 -0800145AS_IF([test "x$enable_lpc_bridge" = "xyes"], [
146 AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS])
147])
Patrick Venturefa6c4d92018-11-02 18:34:53 -0700148
Patrick Venture002916a2018-11-15 10:38:07 -0800149# The address used for mapping P2A or LPC into the BMC's memory-space:
150# e.g. https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts#L26
151# or https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-opp-zaius.dts#L166
152# for PCI, this address is passed back to the host and is used directly.
153AC_ARG_VAR(MAPPED_ADDRESS, [The base address of the memory region reserved for mapping.])
154AS_IF([test "x$MAPPED_ADDRESS" == "x"],
Patrick Venturece6b8742019-01-15 12:11:02 -0800155 [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [0], [Default address to 0.])],
156 [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [$MAPPED_ADDRESS], [Value for memory region mapping.])]
Patrick Venture002916a2018-11-15 10:38:07 -0800157)
158
Patrick Venturee7728422018-11-14 20:16:33 -0800159AC_ARG_ENABLE([aspeed-lpc],
160 AS_HELP_STRING([--enable-aspeed-lpc],
161 [Enable external transfers using Aspeed LPC]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700162AM_CONDITIONAL(ENABLE_ASPEED_LPC, [test "x$enable_aspeed_lpc" = "xyes"])
Patrick Venturee7728422018-11-14 20:16:33 -0800163AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [
Patrick Venture39b13052019-05-01 13:23:52 -0700164 AC_CHECK_HEADER(
165 [linux/aspeed-lpc-ctrl.h],
166 [],
167 [AC_MSG_ERROR([Could not find linux/aspeed-lpc-ctrl.h])]
Patrick Venturee7728422018-11-14 20:16:33 -0800168 )
Patrick Venture39b13052019-05-01 13:23:52 -0700169
Patrick Venturee7728422018-11-14 20:16:33 -0800170 AX_APPEND_COMPILE_FLAGS([-DASPEED_LPC], [CXXFLAGS])
171])
172AC_ARG_ENABLE([nuvoton-lpc],
173 AS_HELP_STRING([--enable-nuvoton-lpc],
174 [Enable external transfers using Nuvoton LPC SHM]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700175AM_CONDITIONAL(ENABLE_NUVOTON_LPC, [test "x$enable_nuvoton_lpc" = "xyes"])
Patrick Venturee7728422018-11-14 20:16:33 -0800176AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
177 AX_APPEND_COMPILE_FLAGS([-DNUVOTON_LPC], [CXXFLAGS])
178])
179
Patrick Venturee1f6d7d2019-06-28 18:08:49 -0700180AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [
181 AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
182 AS_IF([test "x$enable_tests" != "xyes"], [
183 AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.])
184 ])
185 ])
186])
187
Patrick Venturea68d3442019-04-30 12:51:07 -0700188AC_ARG_ENABLE([aspeed-p2a],
189 AS_HELP_STRING([--enable-aspeed-p2a],
190 [Enable external transfers using Aspeed PCI-to-AHB]))
Patrick Ventureac570a12019-05-08 08:53:16 -0700191AM_CONDITIONAL(ENABLE_ASPEED_P2A, [test "x$enable_aspeed_p2a" = "xyes"])
Patrick Venturea68d3442019-04-30 12:51:07 -0700192AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [
193 AC_CHECK_HEADER(linux/aspeed-p2a-ctrl.h,
194 [HAVE_UAPI_LINUX_P2A_CTRL_H=""],
195 [HAVE_UAPI_LINUX_P2A_CTRL_H="-I linux/aspeed-p2a-ctrl.h"])
196 AS_IF([test "$HAVE_UAPI_LINUX_P2A_CTRL_H" != ""],
197 AC_MSG_WARN([Could not find linux/aspeed-p2a-ctrl.h: Attempting to download locally for building from openbmc/linux/+/dev-5.0])
198 AC_SUBST([PCI_BMC_DL],
199 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-5.0/include/uapi/linux/aspeed-p2a-ctrl.h -O linux/aspeed-p2a-ctrl.h`])
200 )
201 AX_APPEND_COMPILE_FLAGS([-DASPEED_P2A], [CXXFLAGS])
202])
203
Patrick Venturee1f6d7d2019-06-28 18:08:49 -0700204AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [
205 AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [
206 AS_IF([test "x$enable_tests" != "xyes"], [
207 AC_MSG_ERROR([Invalid configuration enabling both ASPEED and Nuvoton.])
208 ])
209 ])
210])
211
Patrick Venture6264e692019-06-21 10:57:45 -0700212AC_ARG_VAR(
213 STATIC_HANDLER_STAGED_NAME,
214 [The file to use for staging the firmware update.]
215)
216AS_IF(
217 [test "x$STATIC_HANDLER_STAGED_NAME" == "x"],
218 [STATIC_HANDLER_STAGED_NAME="/run/initramfs/bmc-image"]
219)
220AC_DEFINE_UNQUOTED(
221 [STATIC_HANDLER_STAGED_NAME],
222 ["$STATIC_HANDLER_STAGED_NAME"],
223 [The file to use for staging the firmware update.]
224)
Patrick Venture35a82f32018-11-15 13:34:22 -0800225
Patrick Venture6264e692019-06-21 10:57:45 -0700226AC_ARG_VAR(
227 TARBALL_STAGED_NAME,
228 [The file to use for staging the firmware update.]
229)
230AS_IF(
231 [test "x$TARBALL_STAGED_NAME" == "x"],
232 [TARBALL_STAGED_NAME="/tmp/image-update.tar"]
233)
234AC_DEFINE_UNQUOTED(
235 [TARBALL_STAGED_NAME],
236 ["$TARBALL_STAGED_NAME"],
237 [The file to use for staging the firmware update.]
238)
Patrick Ventured46b8112018-11-15 13:38:55 -0800239
Patrick Venture6264e692019-06-21 10:57:45 -0700240AC_ARG_VAR(
241 HASH_FILENAME,
242 [The file to use for the hash provided.]
243)
244AS_IF(
245 [test "x$HASH_FILENAME" == "x"],
246 [HASH_FILENAME="/tmp/bmc.sig"]
247)
248AC_DEFINE_UNQUOTED(
249 [HASH_FILENAME],
250 ["$HASH_FILENAME"],
251 [The file to use for the hash provided.]
252)
Patrick Venture35a82f32018-11-15 13:34:22 -0800253
Patrick Venture6264e692019-06-21 10:57:45 -0700254AC_ARG_VAR(
255 PREPARATION_DBUS_SERVICE,
256 [The systemd service started when the host starts to send an update.]
257)
258AS_IF(
259 [test "x$PREPARATION_DBUS_SERVICE" == "x"],
260 [PREPARATION_DBUS_SERVICE="prepare_update.service"]
261)
262AC_DEFINE_UNQUOTED(
263 [PREPARATION_DBUS_SERVICE],
264 ["$PREPARATION_DBUS_SERVICE"],
265 [The systemd service started when the host starts to send an update.]
266)
Patrick Venture6d7735d2019-06-21 10:03:19 -0700267
Patrick Venture6264e692019-06-21 10:57:45 -0700268AC_ARG_VAR(
269 VERIFY_STATUS_FILENAME,
270 [The file checked for the verification status.]
271)
272AS_IF(
273 [test "x$VERIFY_STATUS_FILENAME" == "x"],
274 [VERIFY_STATUS_FILENAME="/tmp/bmc.verify"]
275)
276AC_DEFINE_UNQUOTED(
277 [VERIFY_STATUS_FILENAME],
278 ["$VERIFY_STATUS_FILENAME"],
279 [The file checked for the verification status.]
280)
Patrick Venture74059d62019-05-17 10:40:26 -0700281
Patrick Venture6264e692019-06-21 10:57:45 -0700282AC_ARG_VAR(
283 VERIFY_DBUS_SERVICE,
284 [The systemd service started for verification.]
285)
286AS_IF(
287 [test "x$VERIFY_DBUS_SERVICE" == "x"],
288 [VERIFY_DBUS_SERVICE="verify_image.service"]
289)
290AC_DEFINE_UNQUOTED(
291 [VERIFY_DBUS_SERVICE],
292 ["$VERIFY_DBUS_SERVICE"],
293 [The systemd service started for verification.]
294)
Patrick Venture3ecb3502019-05-17 11:03:51 -0700295
Patrick Venture6264e692019-06-21 10:57:45 -0700296AC_ARG_VAR(
297 UPDATE_DBUS_SERVICE,
298 [The systemd service started for updating the BMC.]
299)
300AS_IF(
301 [test "x$UPDATE_DBUS_SERVICE" == "x"],
Patrick Venturef786a872019-06-21 11:06:55 -0700302 [UPDATE_DBUS_SERVICE="update_bmc.service"]
Patrick Venture6264e692019-06-21 10:57:45 -0700303)
304AC_DEFINE_UNQUOTED(
305 [UPDATE_DBUS_SERVICE],
306 ["$UPDATE_DBUS_SERVICE"],
307 [The systemd service started for updating the BMC.]
308)
Patrick Venture6f81b162019-05-20 14:02:59 -0700309
Patrick Venture440bc382018-12-13 19:10:55 -0800310AC_CHECK_HEADER(linux/ipmi.h, [HAVE_LINUX_IPMI_H=""], [HAVE_LINUX_IPMI_H="-I linux/ipmi.h"])
311AS_IF([test "$HAVE_LINUX_IPMI_H" != ""],
312 AC_MSG_WARN([Could not find linux/ipmi.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18])
313 AC_SUBST([IPMI_BMC_DL],
314 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi.h -O linux/ipmi.h`])
315)
316
317AC_CHECK_HEADER(linux/ipmi_msgdefs.h, [HAVE_LINUX_IPMIMSGDEFS_H=""], [HAVE_LINUX_IPMIMSGDEFS_H="-I linux/ipmi_msgdefs.h"])
318AS_IF([test "$HAVE_LINUX_IPMIMSGDEFS_H" != ""],
319 AC_MSG_WARN([Could not find linux/ipmi_msgdefs.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18])
320 AC_SUBST([IPMIMSG_BMC_DL],
321 [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi_msgdefs.h -O linux/ipmi_msgdefs.h`])
322)
323
Patrick Venture6bc04f92019-03-06 13:49:21 -0800324# Make it possible for users to choose if they want test support
325# explicitly or not at all
326AC_ARG_ENABLE([tests], AC_HELP_STRING([--disable-tests],
327 [Build test cases]))
328
Patrick Venturec7ca2912018-11-02 11:38:33 -0700329# Check/set gtest specific functions.
Patrick Venture6bc04f92019-03-06 13:49:21 -0800330AS_IF([test "x$enable_tests" != "xno"], [
331 PKG_CHECK_MODULES([GTEST], [gtest], [], [true])
332 PKG_CHECK_MODULES([GMOCK], [gmock], [], [true])
333 AX_PTHREAD
334
335 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
336 AX_APPEND_COMPILE_FLAGS([$GTEST_CFLAGS], [CPPFLAGS])
337 AC_LANG_PUSH([C++])
338 AC_CHECK_HEADERS([gtest/gtest.h], [
339 AS_IF([test "x$GTEST_CFLAGS" = "x"], [
340 AS_IF([test "x$PTHREAD_CFLAGS" = "x"], [
341 AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=0"], [GTEST_CFLAGS])
342 ], [
343 AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=1"], [GTEST_CFLAGS])
344 AX_APPEND_COMPILE_FLAGS([$PTHREAD_CFLAGS], [GTEST_CFLAGS])
345 ])
346 ])
347 ], [
348 AS_IF([test "x$enable_tests" = "xyes"], [
349 AC_MSG_ERROR([Testing enabled but could not find gtest/gtest.h])
350 ])
351 ])
352 AC_LANG_POP([C++])
353 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
354
355 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
356 AX_APPEND_COMPILE_FLAGS([$GMOCK_CFLAGS], [CPPFLAGS])
357 AC_LANG_PUSH([C++])
358 AC_CHECK_HEADERS([gmock/gmock.h], [], [
359 AS_IF([test "x$enable_tests" = "xyes"], [
360 AC_MSG_ERROR([Testing enabled but could not find gmock/gmock.h])
361 ])
362 ])
363 AC_LANG_POP([C++])
364 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS])
365
366 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
367 AX_APPEND_COMPILE_FLAGS([$GTEST_LIBS], [LDFLAGS])
368 AC_CHECK_LIB([gtest], [main], [
369 AS_IF([test "x$GTEST_LIBS" = "x"], [
370 AX_APPEND_COMPILE_FLAGS([-lgtest], [GTEST_LIBS])
371 ])
372 ], [
373 AS_IF([test "x$enable_tests" = "xyes"], [
374 AC_MSG_ERROR([Testing enabled but couldn't find gtest libs])
375 ])
376 ])
377 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
378
379 AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
380 AX_APPEND_COMPILE_FLAGS([$GMOCK_LIBS], [LDFLAGS])
381 AC_CHECK_LIB([gmock], [main], [
382 AS_IF([test "x$GMOCK_LIBS" = "x"], [
383 AX_APPEND_COMPILE_FLAGS([-lgmock], [GMOCK_LIBS])
384 ])
385 ], [
386 AS_IF([test "x$enable_tests" = "xyes"], [
387 AC_MSG_ERROR([Testing enabled but couldn't find gmock libs])
388 ])
389 ])
390 AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS])
391])
Patrick Venturec7ca2912018-11-02 11:38:33 -0700392
Patrick Venture4679e502019-03-19 11:27:00 -0700393# Check for valgrind
394AS_IF([test "x$enable_tests" = "xno"], [enable_valgrind=no])
395m4_foreach([vgtool], [valgrind_tool_list],
396 [AX_VALGRIND_DFLT(vgtool, [off])])
397AX_VALGRIND_DFLT([memcheck], [on])
398AX_VALGRIND_CHECK
399AM_EXTRA_RECURSIVE_TARGETS([check-valgrind])
400m4_foreach([vgtool], [valgrind_tool_list],
401 [AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-]vgtool)])
402
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800403# Code coverage
404AX_CODE_COVERAGE
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800405AS_IF([test "x$CODE_COVERAGE_ENABLED" = "xyes"], [
406 AX_APPEND_COMPILE_FLAGS([-DHAVE_GCOV], [CODE_COVERAGE_CPPFLAGS])
407])
Patrick Venture9dc342a2019-03-18 08:43:36 -0700408m4_ifdef([_AX_CODE_COVERAGE_RULES],
409 [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [true])],
410 [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [false])])
411AX_ADD_AM_MACRO_STATIC([])
Patrick Venture2f3b4b62019-03-08 13:22:40 -0800412
Patrick Venturec7ca2912018-11-02 11:38:33 -0700413# Add --enable-oe-sdk flag to configure script
414AC_ARG_ENABLE([oe-sdk],
415 AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.])
416)
417
418# Check for OECORE_TARGET_SYSROOT in the environment.
419AC_ARG_VAR(OECORE_TARGET_SYSROOT,
420 [Path to the OE SDK SYSROOT])
421
422# Configure OESDK_TESTCASE_FLAGS environment variable, which will be later
423# used in test/Makefile.am
424AS_IF([test "x$enable_oe_sdk" == "xyes"],
425 AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"],
426 AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk])
427 )
428 AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT])
429 [
430 testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib"
431 testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib"
432 testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`"
433 ]
434 AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags])
435)
436
437# Create configured output
Patrick Venturef0c71df2019-06-26 19:39:36 -0700438AC_CONFIG_FILES([Makefile])
439AC_CONFIG_FILES([bmc/Makefile bmc/test/Makefile])
Patrick Venture6264e692019-06-21 10:57:45 -0700440AC_CONFIG_FILES([tools/Makefile tools/test/Makefile])
441AC_CONFIG_FILES([cleanup/Makefile cleanup/test/Makefile])
Patrick Venturec7ca2912018-11-02 11:38:33 -0700442AC_OUTPUT