Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 1 | # Initialization |
| 2 | AC_PREREQ([2.69]) |
| 3 | AC_INIT([phosphor-ipmi-flash], [0.1], [https://github.com/openbmc/phosphor-ipmi-flash/issues]) |
| 4 | AC_LANG([C++]) |
| 5 | AC_CONFIG_HEADERS([config.h]) |
Patrick Venture | 30993b3 | 2018-11-28 14:52:00 -0800 | [diff] [blame] | 6 | AC_CONFIG_MACRO_DIRS([m4]) |
Patrick Venture | 9dc342a | 2019-03-18 08:43:36 -0700 | [diff] [blame] | 7 | AM_INIT_AUTOMAKE([subdir-objects -Wall -Wno-portability -Werror foreign dist-xz]) |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 8 | AM_SILENT_RULES([yes]) |
| 9 | |
Patrick Venture | 2f3b4b6 | 2019-03-08 13:22:40 -0800 | [diff] [blame] | 10 | # 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. |
| 13 | AS_IF([test "x$enable_tests" = "xno"], [enable_code_coverage=no]) |
| 14 | AS_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 Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 23 | # If building tests, enable both hardware options that are configuration controlled |
| 24 | AS_IF([test "x$enable_tests" = "xyes"], [enable_static_layout=yes]) |
| 25 | AS_IF([test "x$enable_tests" = "xyes"], [enable_tarball_ubi=yes]) |
| 26 | |
| 27 | AS_IF([test "x$enable_tests" = "xyes"], [enable_pci_bridge=yes]) |
| 28 | AS_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. |
| 31 | AS_IF([test "x$enable_tests" = "xyes"], [enable_lpc_bridge=yes]) |
| 32 | AS_IF([test "x$enable_tests" = "xyes"], [enable_aspeed_lpc=yes]) |
| 33 | AS_IF([test "x$enable_tests" = "xyes"], [enable_nuvoton_lpc=yes]) |
| 34 | |
Patrick Venture | 9efef5d | 2019-06-19 08:45:44 -0700 | [diff] [blame] | 35 | # If building tests, enable building all cleanup handler options. |
| 36 | AS_IF([test "x$enable_tests" = "xyes"], [enable_cleanup_delete=yes]) |
| 37 | |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 38 | # Checks for programs. |
| 39 | AC_PROG_CXX |
| 40 | AM_PROG_AR |
| 41 | AC_PROG_INSTALL |
| 42 | AC_PROG_MAKE_SET |
| 43 | |
| 44 | # Checks for typedefs, structures, and compiler characteristics. |
| 45 | AX_CXX_COMPILE_STDCXX_17([noext]) |
| 46 | AX_APPEND_COMPILE_FLAGS([-Wall -Werror], [CXXFLAGS]) |
| 47 | |
| 48 | # Checks for library functions. |
| 49 | LT_INIT # Required for systemd linking |
| 50 | |
Patrick Venture | c2298de | 2019-06-26 19:12:12 -0700 | [diff] [blame] | 51 | # Enable building the host tool (default: yes) |
| 52 | AC_ARG_ENABLE([build-host-tool], |
| 53 | AC_HELP_STRING([--disable-build-host-tool], [Disable building the host tool]) |
Patrick Venture | 4b4ea21 | 2018-11-21 21:23:53 -0800 | [diff] [blame] | 54 | ) |
Patrick Venture | c2298de | 2019-06-26 19:12:12 -0700 | [diff] [blame] | 55 | AM_CONDITIONAL([BUILD_HOST_TOOL], [test "x$enable_build_host_tool" != "xno"]) |
| 56 | |
| 57 | # If not building the host-tool, we're building the BMC. |
| 58 | AS_IF([test "x$enable_build_host_tool" != "xyes"], [ |
| 59 | PKG_CHECK_MODULES( |
| 60 | [SDBUSPLUS], |
| 61 | [sdbusplus], |
| 62 | [AC_DEFINE(HAVE_SDBUSPLUS, [1], [Found openbmc/sdbusplus package])], |
| 63 | [AC_MSG_ERROR([The openbmc/sdbusplus package is required])] |
| 64 | ) |
| 65 | |
| 66 | PKG_CHECK_MODULES([PHOSPHOR_LOGGING], [phosphor-logging]) |
| 67 | ]) |
| 68 | |
| 69 | # These packages are required for both the BMC and the host-tool. |
Patrick Venture | 8b3b325 | 2019-03-07 07:50:13 -0800 | [diff] [blame] | 70 | PKG_CHECK_MODULES( |
| 71 | [IPMIBLOB], |
| 72 | [ipmiblob], |
| 73 | [], |
| 74 | [AC_MSG_ERROR( |
| 75 | [Could not find ipmiblob...openbmc/ipmi-blob-tool package required]) |
| 76 | ] |
| 77 | ) |
Patrick Venture | fe297fe | 2019-05-03 10:24:31 -0700 | [diff] [blame] | 78 | PKG_CHECK_MODULES( |
| 79 | [PCILIB], |
| 80 | [libpci], |
| 81 | [], |
| 82 | [AC_MSG_ERROR([Could not find libpci... pciutils package required])] |
| 83 | ) |
Patrick Venture | 4b4ea21 | 2018-11-21 21:23:53 -0800 | [diff] [blame] | 84 | AC_CHECK_HEADER( |
Patrick Venture | 0a162e2 | 2019-05-22 07:44:04 -0700 | [diff] [blame] | 85 | [blobs-ipmid/blobs.hpp], |
| 86 | [], |
Patrick Venture | 4b4ea21 | 2018-11-21 21:23:53 -0800 | [diff] [blame] | 87 | [AC_MSG_ERROR(["phosphor-ipmi-blobs required and not found."])] |
| 88 | ) |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 89 | AX_PTHREAD([], [AC_MSG_ERROR(["pthread required and not found"])]) |
| 90 | |
Patrick Venture | fa6c4d9 | 2018-11-02 18:34:53 -0700 | [diff] [blame] | 91 | # Configurability |
Patrick Venture | cf10cda | 2019-05-15 10:35:10 -0700 | [diff] [blame] | 92 | |
Patrick Venture | 6f81b16 | 2019-05-20 14:02:59 -0700 | [diff] [blame] | 93 | # Enable the reboot update mechanism |
| 94 | AC_ARG_ENABLE([reboot-update], |
| 95 | AS_HELP_STRING([--enable-reboot-update], |
| 96 | [Enable use of reboot update mechanism.])) |
| 97 | AS_IF([test "x$enable_reboot_update" = "xyes"], [ |
| 98 | AX_APPEND_COMPILE_FLAGS([-DENABLE_REBOOT_UPDATE], [CXXFLAGS]) |
| 99 | ]) |
| 100 | |
Patrick Venture | 9efef5d | 2019-06-19 08:45:44 -0700 | [diff] [blame] | 101 | # Enable the cleanup handle that deletes the temporary files. |
| 102 | AC_ARG_ENABLE([cleanup-delete], |
| 103 | AS_HELP_STRING([--enable-cleanup-delete], |
| 104 | [Enable use of the delete files cleanup mechanism.])) |
| 105 | AM_CONDITIONAL([BUILD_CLEANUP_DELETE], [test "x$enable_cleanup_delete" = "xyes"]) |
| 106 | |
Patrick Venture | fa6c4d9 | 2018-11-02 18:34:53 -0700 | [diff] [blame] | 107 | # Enable static layout for firmware image staging. |
| 108 | AC_ARG_ENABLE([static-layout], |
| 109 | AS_HELP_STRING([--enable-static-layout], |
| 110 | [Enable static layout firmware update via Blobs])) |
| 111 | AS_IF([test "x$enable_static_layout" = "xyes"], [ |
| 112 | AX_APPEND_COMPILE_FLAGS([-DENABLE_STATIC_LAYOUT], [CXXFLAGS]) |
| 113 | ]) |
Patrick Venture | d46b811 | 2018-11-15 13:38:55 -0800 | [diff] [blame] | 114 | # Enable tarball for firmware image staging. |
| 115 | AC_ARG_ENABLE([tarball-ubi], |
| 116 | AS_HELP_STRING([--enable-tarball-ubi], |
| 117 | [Enable tarball firmware update via Blobs])) |
Patrick Venture | 80bfa67 | 2019-05-08 15:24:48 -0700 | [diff] [blame] | 118 | AS_IF([test "x$enable_tarball_ubi" = "xyes"], [ |
Patrick Venture | d46b811 | 2018-11-15 13:38:55 -0800 | [diff] [blame] | 119 | AX_APPEND_COMPILE_FLAGS([-DENABLE_TARBALL_UBI], [CXXFLAGS]) |
| 120 | ]) |
Patrick Venture | 002916a | 2018-11-15 10:38:07 -0800 | [diff] [blame] | 121 | |
Patrick Venture | 4306f68 | 2018-11-06 11:06:02 -0800 | [diff] [blame] | 122 | # Enable P2A, and or LPC (block-transfer is always enabled). |
Patrick Venture | 192d60f | 2018-11-06 11:11:59 -0800 | [diff] [blame] | 123 | AC_ARG_ENABLE([pci-bridge], |
| 124 | AS_HELP_STRING([--enable-pci-bridge], |
| 125 | [Enable pci-bridge transport mechanism])) |
Patrick Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 126 | AM_CONDITIONAL(ENABLE_PCI_BRIDGE, [test "x$enable_pci_bridge" = "xyes"]) |
Patrick Venture | 192d60f | 2018-11-06 11:11:59 -0800 | [diff] [blame] | 127 | AS_IF([test "x$enable_pci_bridge" = "xyes"], [ |
| 128 | AX_APPEND_COMPILE_FLAGS([-DENABLE_PCI_BRIDGE], [CXXFLAGS]) |
| 129 | ]) |
| 130 | AC_ARG_ENABLE([lpc-bridge], |
| 131 | AS_HELP_STRING([--enable-lpc-bridge], |
| 132 | [Enable lpc-bridge transport mechanism])) |
Patrick Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 133 | AM_CONDITIONAL(ENABLE_LPC_BRIDGE, [test "x$enable_lpc_bridge" = "xyes"]) |
Patrick Venture | 192d60f | 2018-11-06 11:11:59 -0800 | [diff] [blame] | 134 | AS_IF([test "x$enable_lpc_bridge" = "xyes"], [ |
| 135 | AX_APPEND_COMPILE_FLAGS([-DENABLE_LPC_BRIDGE], [CXXFLAGS]) |
| 136 | ]) |
Patrick Venture | fa6c4d9 | 2018-11-02 18:34:53 -0700 | [diff] [blame] | 137 | |
Patrick Venture | 002916a | 2018-11-15 10:38:07 -0800 | [diff] [blame] | 138 | # The address used for mapping P2A or LPC into the BMC's memory-space: |
| 139 | # e.g. https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-quanta-q71l.dts#L26 |
| 140 | # or https://github.com/openbmc/linux/blob/1da2ce51886a3b2f5db2087f26c661e13ee13b84/arch/arm/boot/dts/aspeed-bmc-opp-zaius.dts#L166 |
| 141 | # for PCI, this address is passed back to the host and is used directly. |
| 142 | AC_ARG_VAR(MAPPED_ADDRESS, [The base address of the memory region reserved for mapping.]) |
| 143 | AS_IF([test "x$MAPPED_ADDRESS" == "x"], |
Patrick Venture | ce6b874 | 2019-01-15 12:11:02 -0800 | [diff] [blame] | 144 | [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [0], [Default address to 0.])], |
| 145 | [AC_DEFINE_UNQUOTED(MAPPED_ADDRESS, [$MAPPED_ADDRESS], [Value for memory region mapping.])] |
Patrick Venture | 002916a | 2018-11-15 10:38:07 -0800 | [diff] [blame] | 146 | ) |
| 147 | |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 148 | AC_ARG_ENABLE([aspeed-lpc], |
| 149 | AS_HELP_STRING([--enable-aspeed-lpc], |
| 150 | [Enable external transfers using Aspeed LPC])) |
Patrick Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 151 | AM_CONDITIONAL(ENABLE_ASPEED_LPC, [test "x$enable_aspeed_lpc" = "xyes"]) |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 152 | AS_IF([test "x$enable_aspeed_lpc" = "xyes"], [ |
Patrick Venture | 39b1305 | 2019-05-01 13:23:52 -0700 | [diff] [blame] | 153 | AC_CHECK_HEADER( |
| 154 | [linux/aspeed-lpc-ctrl.h], |
| 155 | [], |
| 156 | [AC_MSG_ERROR([Could not find linux/aspeed-lpc-ctrl.h])] |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 157 | ) |
Patrick Venture | 39b1305 | 2019-05-01 13:23:52 -0700 | [diff] [blame] | 158 | |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 159 | AX_APPEND_COMPILE_FLAGS([-DASPEED_LPC], [CXXFLAGS]) |
| 160 | ]) |
| 161 | AC_ARG_ENABLE([nuvoton-lpc], |
| 162 | AS_HELP_STRING([--enable-nuvoton-lpc], |
| 163 | [Enable external transfers using Nuvoton LPC SHM])) |
Patrick Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 164 | AM_CONDITIONAL(ENABLE_NUVOTON_LPC, [test "x$enable_nuvoton_lpc" = "xyes"]) |
Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 165 | AS_IF([test "x$enable_nuvoton_lpc" = "xyes"], [ |
| 166 | AX_APPEND_COMPILE_FLAGS([-DNUVOTON_LPC], [CXXFLAGS]) |
| 167 | ]) |
| 168 | |
Patrick Venture | a68d344 | 2019-04-30 12:51:07 -0700 | [diff] [blame] | 169 | AC_ARG_ENABLE([aspeed-p2a], |
| 170 | AS_HELP_STRING([--enable-aspeed-p2a], |
| 171 | [Enable external transfers using Aspeed PCI-to-AHB])) |
Patrick Venture | ac570a1 | 2019-05-08 08:53:16 -0700 | [diff] [blame] | 172 | AM_CONDITIONAL(ENABLE_ASPEED_P2A, [test "x$enable_aspeed_p2a" = "xyes"]) |
Patrick Venture | a68d344 | 2019-04-30 12:51:07 -0700 | [diff] [blame] | 173 | AS_IF([test "x$enable_aspeed_p2a" = "xyes"], [ |
| 174 | AC_CHECK_HEADER(linux/aspeed-p2a-ctrl.h, |
| 175 | [HAVE_UAPI_LINUX_P2A_CTRL_H=""], |
| 176 | [HAVE_UAPI_LINUX_P2A_CTRL_H="-I linux/aspeed-p2a-ctrl.h"]) |
| 177 | AS_IF([test "$HAVE_UAPI_LINUX_P2A_CTRL_H" != ""], |
| 178 | AC_MSG_WARN([Could not find linux/aspeed-p2a-ctrl.h: Attempting to download locally for building from openbmc/linux/+/dev-5.0]) |
| 179 | AC_SUBST([PCI_BMC_DL], |
| 180 | [`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`]) |
| 181 | ) |
| 182 | AX_APPEND_COMPILE_FLAGS([-DASPEED_P2A], [CXXFLAGS]) |
| 183 | ]) |
| 184 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 185 | AC_ARG_VAR( |
| 186 | STATIC_HANDLER_STAGED_NAME, |
| 187 | [The file to use for staging the firmware update.] |
| 188 | ) |
| 189 | AS_IF( |
| 190 | [test "x$STATIC_HANDLER_STAGED_NAME" == "x"], |
| 191 | [STATIC_HANDLER_STAGED_NAME="/run/initramfs/bmc-image"] |
| 192 | ) |
| 193 | AC_DEFINE_UNQUOTED( |
| 194 | [STATIC_HANDLER_STAGED_NAME], |
| 195 | ["$STATIC_HANDLER_STAGED_NAME"], |
| 196 | [The file to use for staging the firmware update.] |
| 197 | ) |
Patrick Venture | 35a82f3 | 2018-11-15 13:34:22 -0800 | [diff] [blame] | 198 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 199 | AC_ARG_VAR( |
| 200 | TARBALL_STAGED_NAME, |
| 201 | [The file to use for staging the firmware update.] |
| 202 | ) |
| 203 | AS_IF( |
| 204 | [test "x$TARBALL_STAGED_NAME" == "x"], |
| 205 | [TARBALL_STAGED_NAME="/tmp/image-update.tar"] |
| 206 | ) |
| 207 | AC_DEFINE_UNQUOTED( |
| 208 | [TARBALL_STAGED_NAME], |
| 209 | ["$TARBALL_STAGED_NAME"], |
| 210 | [The file to use for staging the firmware update.] |
| 211 | ) |
Patrick Venture | d46b811 | 2018-11-15 13:38:55 -0800 | [diff] [blame] | 212 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 213 | AC_ARG_VAR( |
| 214 | HASH_FILENAME, |
| 215 | [The file to use for the hash provided.] |
| 216 | ) |
| 217 | AS_IF( |
| 218 | [test "x$HASH_FILENAME" == "x"], |
| 219 | [HASH_FILENAME="/tmp/bmc.sig"] |
| 220 | ) |
| 221 | AC_DEFINE_UNQUOTED( |
| 222 | [HASH_FILENAME], |
| 223 | ["$HASH_FILENAME"], |
| 224 | [The file to use for the hash provided.] |
| 225 | ) |
Patrick Venture | 35a82f3 | 2018-11-15 13:34:22 -0800 | [diff] [blame] | 226 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 227 | AC_ARG_VAR( |
| 228 | PREPARATION_DBUS_SERVICE, |
| 229 | [The systemd service started when the host starts to send an update.] |
| 230 | ) |
| 231 | AS_IF( |
| 232 | [test "x$PREPARATION_DBUS_SERVICE" == "x"], |
| 233 | [PREPARATION_DBUS_SERVICE="prepare_update.service"] |
| 234 | ) |
| 235 | AC_DEFINE_UNQUOTED( |
| 236 | [PREPARATION_DBUS_SERVICE], |
| 237 | ["$PREPARATION_DBUS_SERVICE"], |
| 238 | [The systemd service started when the host starts to send an update.] |
| 239 | ) |
Patrick Venture | 6d7735d | 2019-06-21 10:03:19 -0700 | [diff] [blame] | 240 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 241 | AC_ARG_VAR( |
| 242 | VERIFY_STATUS_FILENAME, |
| 243 | [The file checked for the verification status.] |
| 244 | ) |
| 245 | AS_IF( |
| 246 | [test "x$VERIFY_STATUS_FILENAME" == "x"], |
| 247 | [VERIFY_STATUS_FILENAME="/tmp/bmc.verify"] |
| 248 | ) |
| 249 | AC_DEFINE_UNQUOTED( |
| 250 | [VERIFY_STATUS_FILENAME], |
| 251 | ["$VERIFY_STATUS_FILENAME"], |
| 252 | [The file checked for the verification status.] |
| 253 | ) |
Patrick Venture | 74059d6 | 2019-05-17 10:40:26 -0700 | [diff] [blame] | 254 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 255 | AC_ARG_VAR( |
| 256 | VERIFY_DBUS_SERVICE, |
| 257 | [The systemd service started for verification.] |
| 258 | ) |
| 259 | AS_IF( |
| 260 | [test "x$VERIFY_DBUS_SERVICE" == "x"], |
| 261 | [VERIFY_DBUS_SERVICE="verify_image.service"] |
| 262 | ) |
| 263 | AC_DEFINE_UNQUOTED( |
| 264 | [VERIFY_DBUS_SERVICE], |
| 265 | ["$VERIFY_DBUS_SERVICE"], |
| 266 | [The systemd service started for verification.] |
| 267 | ) |
Patrick Venture | 3ecb350 | 2019-05-17 11:03:51 -0700 | [diff] [blame] | 268 | |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 269 | AC_ARG_VAR( |
| 270 | UPDATE_DBUS_SERVICE, |
| 271 | [The systemd service started for updating the BMC.] |
| 272 | ) |
| 273 | AS_IF( |
| 274 | [test "x$UPDATE_DBUS_SERVICE" == "x"], |
Patrick Venture | f786a87 | 2019-06-21 11:06:55 -0700 | [diff] [blame] | 275 | [UPDATE_DBUS_SERVICE="update_bmc.service"] |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 276 | ) |
| 277 | AC_DEFINE_UNQUOTED( |
| 278 | [UPDATE_DBUS_SERVICE], |
| 279 | ["$UPDATE_DBUS_SERVICE"], |
| 280 | [The systemd service started for updating the BMC.] |
| 281 | ) |
Patrick Venture | 6f81b16 | 2019-05-20 14:02:59 -0700 | [diff] [blame] | 282 | |
Patrick Venture | 440bc38 | 2018-12-13 19:10:55 -0800 | [diff] [blame] | 283 | AC_CHECK_HEADER(linux/ipmi.h, [HAVE_LINUX_IPMI_H=""], [HAVE_LINUX_IPMI_H="-I linux/ipmi.h"]) |
| 284 | AS_IF([test "$HAVE_LINUX_IPMI_H" != ""], |
| 285 | AC_MSG_WARN([Could not find linux/ipmi.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18]) |
| 286 | AC_SUBST([IPMI_BMC_DL], |
| 287 | [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi.h -O linux/ipmi.h`]) |
| 288 | ) |
| 289 | |
| 290 | AC_CHECK_HEADER(linux/ipmi_msgdefs.h, [HAVE_LINUX_IPMIMSGDEFS_H=""], [HAVE_LINUX_IPMIMSGDEFS_H="-I linux/ipmi_msgdefs.h"]) |
| 291 | AS_IF([test "$HAVE_LINUX_IPMIMSGDEFS_H" != ""], |
| 292 | AC_MSG_WARN([Could not find linux/ipmi_msgdefs.h: Attempting to download locally for building from openbmc/linux/+/dev-4.18]) |
| 293 | AC_SUBST([IPMIMSG_BMC_DL], |
| 294 | [`mkdir -p linux;wget https://raw.githubusercontent.com/openbmc/linux/dev-4.18/include/uapi/linux/ipmi_msgdefs.h -O linux/ipmi_msgdefs.h`]) |
| 295 | ) |
| 296 | |
Patrick Venture | 6bc04f9 | 2019-03-06 13:49:21 -0800 | [diff] [blame] | 297 | # Make it possible for users to choose if they want test support |
| 298 | # explicitly or not at all |
| 299 | AC_ARG_ENABLE([tests], AC_HELP_STRING([--disable-tests], |
| 300 | [Build test cases])) |
| 301 | |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 302 | # Check/set gtest specific functions. |
Patrick Venture | 6bc04f9 | 2019-03-06 13:49:21 -0800 | [diff] [blame] | 303 | AS_IF([test "x$enable_tests" != "xno"], [ |
| 304 | PKG_CHECK_MODULES([GTEST], [gtest], [], [true]) |
| 305 | PKG_CHECK_MODULES([GMOCK], [gmock], [], [true]) |
| 306 | AX_PTHREAD |
| 307 | |
| 308 | AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS]) |
| 309 | AX_APPEND_COMPILE_FLAGS([$GTEST_CFLAGS], [CPPFLAGS]) |
| 310 | AC_LANG_PUSH([C++]) |
| 311 | AC_CHECK_HEADERS([gtest/gtest.h], [ |
| 312 | AS_IF([test "x$GTEST_CFLAGS" = "x"], [ |
| 313 | AS_IF([test "x$PTHREAD_CFLAGS" = "x"], [ |
| 314 | AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=0"], [GTEST_CFLAGS]) |
| 315 | ], [ |
| 316 | AX_APPEND_COMPILE_FLAGS(["-DGTEST_HAS_PTHREAD=1"], [GTEST_CFLAGS]) |
| 317 | AX_APPEND_COMPILE_FLAGS([$PTHREAD_CFLAGS], [GTEST_CFLAGS]) |
| 318 | ]) |
| 319 | ]) |
| 320 | ], [ |
| 321 | AS_IF([test "x$enable_tests" = "xyes"], [ |
| 322 | AC_MSG_ERROR([Testing enabled but could not find gtest/gtest.h]) |
| 323 | ]) |
| 324 | ]) |
| 325 | AC_LANG_POP([C++]) |
| 326 | AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS]) |
| 327 | |
| 328 | AX_SAVE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS]) |
| 329 | AX_APPEND_COMPILE_FLAGS([$GMOCK_CFLAGS], [CPPFLAGS]) |
| 330 | AC_LANG_PUSH([C++]) |
| 331 | AC_CHECK_HEADERS([gmock/gmock.h], [], [ |
| 332 | AS_IF([test "x$enable_tests" = "xyes"], [ |
| 333 | AC_MSG_ERROR([Testing enabled but could not find gmock/gmock.h]) |
| 334 | ]) |
| 335 | ]) |
| 336 | AC_LANG_POP([C++]) |
| 337 | AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [CPPFLAGS]) |
| 338 | |
| 339 | AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS]) |
| 340 | AX_APPEND_COMPILE_FLAGS([$GTEST_LIBS], [LDFLAGS]) |
| 341 | AC_CHECK_LIB([gtest], [main], [ |
| 342 | AS_IF([test "x$GTEST_LIBS" = "x"], [ |
| 343 | AX_APPEND_COMPILE_FLAGS([-lgtest], [GTEST_LIBS]) |
| 344 | ]) |
| 345 | ], [ |
| 346 | AS_IF([test "x$enable_tests" = "xyes"], [ |
| 347 | AC_MSG_ERROR([Testing enabled but couldn't find gtest libs]) |
| 348 | ]) |
| 349 | ]) |
| 350 | AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS]) |
| 351 | |
| 352 | AX_SAVE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS]) |
| 353 | AX_APPEND_COMPILE_FLAGS([$GMOCK_LIBS], [LDFLAGS]) |
| 354 | AC_CHECK_LIB([gmock], [main], [ |
| 355 | AS_IF([test "x$GMOCK_LIBS" = "x"], [ |
| 356 | AX_APPEND_COMPILE_FLAGS([-lgmock], [GMOCK_LIBS]) |
| 357 | ]) |
| 358 | ], [ |
| 359 | AS_IF([test "x$enable_tests" = "xyes"], [ |
| 360 | AC_MSG_ERROR([Testing enabled but couldn't find gmock libs]) |
| 361 | ]) |
| 362 | ]) |
| 363 | AX_RESTORE_FLAGS_WITH_PREFIX(OLD, [LDFLAGS]) |
| 364 | ]) |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 365 | |
Patrick Venture | 4679e50 | 2019-03-19 11:27:00 -0700 | [diff] [blame] | 366 | # Check for valgrind |
| 367 | AS_IF([test "x$enable_tests" = "xno"], [enable_valgrind=no]) |
| 368 | m4_foreach([vgtool], [valgrind_tool_list], |
| 369 | [AX_VALGRIND_DFLT(vgtool, [off])]) |
| 370 | AX_VALGRIND_DFLT([memcheck], [on]) |
| 371 | AX_VALGRIND_CHECK |
| 372 | AM_EXTRA_RECURSIVE_TARGETS([check-valgrind]) |
| 373 | m4_foreach([vgtool], [valgrind_tool_list], |
| 374 | [AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-]vgtool)]) |
| 375 | |
Patrick Venture | 2f3b4b6 | 2019-03-08 13:22:40 -0800 | [diff] [blame] | 376 | # Code coverage |
| 377 | AX_CODE_COVERAGE |
Patrick Venture | 2f3b4b6 | 2019-03-08 13:22:40 -0800 | [diff] [blame] | 378 | AS_IF([test "x$CODE_COVERAGE_ENABLED" = "xyes"], [ |
| 379 | AX_APPEND_COMPILE_FLAGS([-DHAVE_GCOV], [CODE_COVERAGE_CPPFLAGS]) |
| 380 | ]) |
Patrick Venture | 9dc342a | 2019-03-18 08:43:36 -0700 | [diff] [blame] | 381 | m4_ifdef([_AX_CODE_COVERAGE_RULES], |
| 382 | [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [true])], |
| 383 | [AM_CONDITIONAL(AUTOCONF_CODE_COVERAGE_2019_01_06, [false])]) |
| 384 | AX_ADD_AM_MACRO_STATIC([]) |
Patrick Venture | 2f3b4b6 | 2019-03-08 13:22:40 -0800 | [diff] [blame] | 385 | |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 386 | # Add --enable-oe-sdk flag to configure script |
| 387 | AC_ARG_ENABLE([oe-sdk], |
| 388 | AS_HELP_STRING([--enable-oe-sdk], [Link testcases absolutely against OE SDK so they can be ran within it.]) |
| 389 | ) |
| 390 | |
| 391 | # Check for OECORE_TARGET_SYSROOT in the environment. |
| 392 | AC_ARG_VAR(OECORE_TARGET_SYSROOT, |
| 393 | [Path to the OE SDK SYSROOT]) |
| 394 | |
| 395 | # Configure OESDK_TESTCASE_FLAGS environment variable, which will be later |
| 396 | # used in test/Makefile.am |
| 397 | AS_IF([test "x$enable_oe_sdk" == "xyes"], |
| 398 | AS_IF([test "x$OECORE_TARGET_SYSROOT" == "x"], |
| 399 | AC_MSG_ERROR([OECORE_TARGET_SYSROOT must be set with --enable-oe-sdk]) |
| 400 | ) |
| 401 | AC_MSG_NOTICE([Enabling OE-SDK at $OECORE_TARGET_SYSROOT]) |
| 402 | [ |
| 403 | testcase_flags="-Wl,-rpath,\${OECORE_TARGET_SYSROOT}/lib" |
| 404 | testcase_flags="${testcase_flags} -Wl,-rpath,\${OECORE_TARGET_SYSROOT}/usr/lib" |
| 405 | testcase_flags="${testcase_flags} -Wl,-dynamic-linker,`find \${OECORE_TARGET_SYSROOT}/lib/ld-*.so | sort -r -n | head -n1`" |
| 406 | ] |
| 407 | AC_SUBST([OESDK_TESTCASE_FLAGS], [$testcase_flags]) |
| 408 | ) |
| 409 | |
| 410 | # Create configured output |
Patrick Venture | f0c71df | 2019-06-26 19:39:36 -0700 | [diff] [blame^] | 411 | AC_CONFIG_FILES([Makefile]) |
| 412 | AC_CONFIG_FILES([bmc/Makefile bmc/test/Makefile]) |
Patrick Venture | 6264e69 | 2019-06-21 10:57:45 -0700 | [diff] [blame] | 413 | AC_CONFIG_FILES([tools/Makefile tools/test/Makefile]) |
| 414 | AC_CONFIG_FILES([cleanup/Makefile cleanup/test/Makefile]) |
Patrick Venture | c7ca291 | 2018-11-02 11:38:33 -0700 | [diff] [blame] | 415 | AC_OUTPUT |