Lines Matching defs:gen4asm
121 AC_ARG_ENABLE(gen4asm,
122 AS_HELP_STRING([--enable-gen4asm],
127 gen4asm=no
129 AC_ARG_WITH(gen4asm,
130 AS_HELP_STRING([--with-gen4asm=PATH],
131 [Path to intel-gen4asm binary]),
135 gen4asm=yes
137 PKG_CHECK_MODULES(GEN4ASM, [intel-gen4asm >= 1.2], [gen4asm=yes], [gen4asm=no])
138 if test "x$ASM" = "xyes" -a "x$gen4asm" != "xyes"; then
139 AC_MSG_ERROR([intel-gen4asm support requested but not found])
142 if test "x$gen4asm" = "xyes"; then
143 AC_MSG_CHECKING([path to use for intel-gen4asm])
147 INTEL_GEN4ASM="`pkg-config intel-gen4asm --variable=exec_prefix`/bin/intel-gen4asm"
150 AC_MSG_ERROR([intel-gen4asm enabled, but not found. Tried '$INTEL_GEN4ASM'.])
156 AM_CONDITIONAL(HAVE_GEN4ASM, test "x$gen4asm" = "xyes")