summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2009-07-06 07:40:25 (GMT)
committeraxis <qt-info@nokia.com>2009-07-06 07:45:31 (GMT)
commitf3869caa41d452ef607bcba168bf7bdeb8ac9a45 (patch)
treeea1badbf93e4db1201d29fd1115460cd071f92af /mkspecs
parent01a1269d5f150b75e9f7571bc2a544494ffc3e17 (diff)
downloadQt-f3869caa41d452ef607bcba168bf7bdeb8ac9a45.zip
Qt-f3869caa41d452ef607bcba168bf7bdeb8ac9a45.tar.gz
Qt-f3869caa41d452ef607bcba168bf7bdeb8ac9a45.tar.bz2
Started suppressing some rather pointless warnings from RVCT.
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/common/symbian/armcc_warnings.prf10
1 files changed, 10 insertions, 0 deletions
diff --git a/mkspecs/common/symbian/armcc_warnings.prf b/mkspecs/common/symbian/armcc_warnings.prf
new file mode 100644
index 0000000..95b3bc0
--- /dev/null
+++ b/mkspecs/common/symbian/armcc_warnings.prf
@@ -0,0 +1,10 @@
+# 111: Statement is unreachable
+# 185: Dynamic initialization in unreachable code
+# 191: Type qualifier is meaningless on cast type
+# 368: class "<class>" defines no constructor to initialize the following: <member>
+# (Disabled because there are other ways of assigning besides constructors)
+# 1293: Assignment in condition
+# 1294: pre-ANSI C style functions declarations (used a lot in 3rd party code)
+# 2874: <variable> may be used before being set (this one sounds useful, but
+# it's output also for class instances, making it useless in practice)
+QMAKE_CFLAGS.ARMCC += --diag_suppress 111,185,191,368,1293,1294,2874