0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-17 01:18:39 +02:00

configure: Add explicit option to enable llvm module building related.

This commit is contained in:
Jason Volk 2020-07-31 21:45:39 -07:00
parent b3c4583dd0
commit 406020572d

View file

@ -2245,6 +2245,15 @@ PKG_CHECK_MODULES(LLVM, [LLVM],
])
])
AC_MSG_CHECKING(whether to enable experimental libllvm module)
AC_ARG_ENABLE(devllvm, RB_HELP_STRING([--enable-devllvm], [Enable experimental LLVM module development])
[
AC_MSG_RESULT([yes])
], [
AC_MSG_RESULT([no])
have_libllvm="no"
])
AM_CONDITIONAL([LLVM], [test "x$have_libllvm" = "xyes" ])