mirror of
https://github.com/matrix-construct/construct
synced 2025-03-14 05:20:17 +01:00
configure: Add explicit option to enable llvm module building related.
This commit is contained in:
parent
b3c4583dd0
commit
406020572d
1 changed files with 9 additions and 0 deletions
|
@ -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" ])
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue