summaryrefslogtreecommitdiffstats
path: root/tmake
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-11-02 11:55:04 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-11-02 11:55:04 (GMT)
commit1ffefb70e714401873061f1c6fe5be6ad5bf2c3c (patch)
treeff7354aa6a5391907af73af2216e61063d95a0c0 /tmake
parent6298c83b5061fb264c15e2a6c76fed32e7f8427d (diff)
downloadDoxygen-1ffefb70e714401873061f1c6fe5be6ad5bf2c3c.zip
Doxygen-1ffefb70e714401873061f1c6fe5be6ad5bf2c3c.tar.gz
Doxygen-1ffefb70e714401873061f1c6fe5be6ad5bf2c3c.tar.bz2
Bug 711097 - Compiler warnings because char is unsigned on ARM/PPC: "comparison is always false"
Diffstat (limited to 'tmake')
-rw-r--r--tmake/lib/linux-g++/tmake.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmake/lib/linux-g++/tmake.conf b/tmake/lib/linux-g++/tmake.conf
index 0378239..193fadd 100644
--- a/tmake/lib/linux-g++/tmake.conf
+++ b/tmake/lib/linux-g++/tmake.conf
@@ -8,7 +8,7 @@ TEMPLATE = app
CONFIG = qt warn_on release
TMAKE_CC = gcc
-TMAKE_CFLAGS = -pipe
+TMAKE_CFLAGS = -pipe -fsigned-char
TMAKE_CFLAGS_WARN_ON = -Wall -W
TMAKE_CFLAGS_WARN_OFF =
TMAKE_CFLAGS_RELEASE = -O2