summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorJorgen Lind <jorgen.lind@digia.com>2014-02-25 14:46:56 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-26 12:58:00 +0100
commit24f10256631cd1e0f461430a50be36b74f19e01e (patch)
tree2aae8fdc93fd745b136b940c713e8110d18b2543 /configure
parentaab29d546c006bf9be3fccd484e88ecc840bc0e3 (diff)
Remove the option to force no JIT in javascript core
Change-Id: I81a9968b360cf889f92e690cdf4028692b904a0c Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure30
1 files changed, 0 insertions, 30 deletions
diff --git a/configure b/configure
index 7e84123882..88ec0256cc 100755
--- a/configure
+++ b/configure
@@ -627,7 +627,6 @@ CFG_COMPILE_EXAMPLES=yes
CFG_RELEASE_QMAKE=no
CFG_AUDIO_BACKEND=auto
CFG_QML_DEBUG=yes
-CFG_JAVASCRIPTCORE_JIT=auto
CFG_PKGCONFIG=auto
CFG_STACK_PROTECTOR_STRONG=auto
CFG_SLOG2=auto
@@ -1897,13 +1896,6 @@ while [ "$#" -gt 0 ]; do
fi
fi
;;
- javascript-jit)
- if [ "$VAL" = "yes" ] || [ "$VAL" = "auto" ] || [ "$VAL" = "no" ]; then
- CFG_JAVASCRIPTCORE_JIT="$VAL"
- else
- UNKNOWN_OPT=yes
- fi
- ;;
confirm-license)
if [ "$VAL" = "yes" ]; then
OPT_CONFIRM_LICENSE="$VAL"
@@ -5737,27 +5729,6 @@ if [ "$CFG_ALSA" = "auto" ]; then
fi
fi
-if [ "$CFG_JAVASCRIPTCORE_JIT" = "yes" ] || [ "$CFG_JAVASCRIPTCORE_JIT" = "auto" ]; then
- if [ "$CFG_ARCH" = "arm" ]; then
- compileTest unix/javascriptcore-jit "javascriptcore-jit"
- if [ $? != "0" ]; then
- CFG_JAVASCRIPTCORE_JIT=no
- fi
- else
- case "$XPLATFORM" in
- linux-icc*)
- CFG_JAVASCRIPTCORE_JIT=no
- ;;
- esac
- fi
-fi
-
-if [ "$CFG_JAVASCRIPTCORE_JIT" = "yes" ]; then
- QMakeVar set JAVASCRIPTCORE_JIT yes
-elif [ "$CFG_JAVASCRIPTCORE_JIT" = "no" ]; then
- QMakeVar set JAVASCRIPTCORE_JIT no
-fi
-
if [ "$CFG_AUDIO_BACKEND" = "auto" ]; then
CFG_AUDIO_BACKEND=yes
fi
@@ -6787,7 +6758,6 @@ report_support " Qt Concurrent .........." "$CFG_CONCURRENT"
report_support " Qt GUI ................." "$CFG_GUI"
report_support " Qt Widgets ............." "$CFG_WIDGETS"
report_support " Large File ............." "$CFG_LARGEFILE"
-report_support " JavaScriptCore JIT ....." "$CFG_JAVASCRIPTCORE_JIT" auto "To be decided by JavaScriptCore"
report_support " QML debugging .........." "$CFG_QML_DEBUG"
report_support " Use system proxies ....." "$CFG_SYSTEM_PROXIES"