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