summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@theqtcompany.com>2015-03-02 09:01:36 +0200
committerSamuli Piippo <samuli.piippo@theqtcompany.com>2015-03-09 14:19:31 +0000
commitb0ae0db61afbb93f8087937c8453d78a680bcbeb (patch)
treee87ea0a5d5ed9ca6e5db253cf721c6fb4483b4a4 /tools
parenta31823176af50baaaf78e8ea342b9efbf5c7c4d2 (diff)
Remove neon command line options from configureapp
Neon support needs to be enabled unconditionally in mkspecs, so removing -neon and -no-neon command line options from configure app. It now has the same functionality as configure script. Task-number: QTBUG-44690 Change-Id: Iaf5bf7ac4e11fcb798f643660e48a4ed3ce1036b Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/configure/configureapp.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp
index ed4eb7e09a..ca2a5b1769 100644
--- a/tools/configure/configureapp.cpp
+++ b/tools/configure/configureapp.cpp
@@ -1269,12 +1269,6 @@ void Configure::parseCmdLine()
dictionary["QT_INOTIFY"] = "no";
}
- else if (configCmdLine.at(i) == "-neon") {
- dictionary["NEON"] = "yes";
- } else if (configCmdLine.at(i) == "-no-neon") {
- dictionary["NEON"] = "no";
- }
-
else if (configCmdLine.at(i) == "-largefile") {
dictionary["LARGE_FILE"] = "yes";
}
@@ -1846,9 +1840,6 @@ bool Configure::displayHelp()
desc("NIS", "no", "-no-nis", "Do not compile NIS support.");
desc("NIS", "yes", "-nis", "Compile NIS support.\n");
- desc("NEON", "yes", "-neon", "Enable the use of NEON instructions.");
- desc("NEON", "no", "-no-neon", "Do not enable the use of NEON instructions.\n");
-
desc("QT_ICONV", "disable", "-no-iconv", "Do not enable support for iconv(3).");
desc("QT_ICONV", "yes", "-iconv", "Enable support for iconv(3).");
desc("QT_ICONV", "yes", "-sun-iconv", "Enable support for iconv(3) using sun-iconv.");