Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2019-08-05 00:50:54 +0300
committerLarry Ewing <lewing@microsoft.com>2019-08-07 00:46:19 +0300
commit476af240d242b557ea82723f601795697fffb2e5 (patch)
tree2936ecb9984311a50dd1a35a47541ed40439ec9d /configure.ac
parent9bf703b031bf81fa621c3d2318a4fc4333b80d3b (diff)
[wasm] Compile interp.c with -mllvm -join-liveintervals=false to fix compilation times.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 4e6dcf358b9..778eca4de93 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4275,6 +4275,7 @@ jit_wanted=true
boehm_supported=true
BTLS_SUPPORTED=no
BTLS_PLATFORM=
+INTERP_CFLAGS=""
case "$host" in
wasm32*)
@@ -4284,6 +4285,10 @@ case "$host" in
ACCESS_UNALIGNED="no"
with_tls=pthread
target_wasm=yes
+ if test "x$mono_cv_clang" = "xyes"; then
+ INTERP_CFLAGS="-mllvm -join-liveintervals=false"
+ AC_SUBST(INTERP_CFLAGS)
+ fi
;;
mips*)
TARGET=MIPS;