summaryrefslogtreecommitdiffstats
path: root/tools
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 /tools
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 'tools')
-rw-r--r--tools/configure/configureapp.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index ed854a343b..ac794d4c43 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -1691,7 +1691,6 @@ void Configure::applySpecSpecifics()
dictionary[ "REDUCE_RELOCATIONS" ] = "yes";
dictionary[ "QT_GETIFADDRS" ] = "no";
dictionary[ "QT_XKBCOMMON" ] = "no";
- dictionary[ "JAVASCRIPTCORE_JIT" ] = "no";
}
}
@@ -2744,12 +2743,6 @@ void Configure::generateOutputVars()
if (!dictionary["QT_LFLAGS_SQLITE"].isEmpty())
qmakeVars += "QT_LFLAGS_SQLITE += " + dictionary["QT_LFLAGS_SQLITE"];
- if (dictionary["JAVASCRIPTCORE_JIT"] == "no")
- qmakeVars += "JAVASCRIPTCORE_JIT = no";
- else if (dictionary["JAVASCRIPTCORE_JIT"] == "yes")
- qmakeVars += "JAVASCRIPTCORE_JIT = yes";
- // else let JavaScriptCore decide
-
if (dictionary[ "OPENGL" ] == "yes")
qtConfig += "opengl";