[Lldb-commits] [lldb] r107672 - in /lldb/trunk: lldb.xcodeproj/project.pbxproj tools/debugserver/debugserver.xcodeproj/project.pbxproj
Greg Clayton
gclayton at apple.com
Tue Jul 6 09:16:14 PDT 2010
Author: gclayton
Date: Tue Jul 6 11:16:14 2010
New Revision: 107672
URL: http://llvm.org/viewvc/llvm-project?rev=107672&view=rev
Log:
Added "-Wparentheses" so we catch possible errors like:
if (a = 0)
instead of:
if (a == 0)
Thanks to Jean-Daniel Dupas.
Modified:
lldb/trunk/lldb.xcodeproj/project.pbxproj
lldb/trunk/tools/debugserver/debugserver.xcodeproj/project.pbxproj
Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lldb.xcodeproj/project.pbxproj?rev=107672&r1=107671&r2=107672&view=diff
==============================================================================
--- lldb/trunk/lldb.xcodeproj/project.pbxproj (original)
+++ lldb/trunk/lldb.xcodeproj/project.pbxproj Tue Jul 6 11:16:14 2010
@@ -2759,6 +2759,7 @@
OTHER_CFLAGS = (
"-DFOR_DYLD=0",
"-DSUPPORT_REMOTE_UNWINDING",
+ "-Wparentheses",
);
OTHER_CPLUSPLUSFLAGS = (
"-fno-rtti",
@@ -2811,6 +2812,7 @@
OTHER_CFLAGS = (
"-DFOR_DYLD=0",
"-DSUPPORT_REMOTE_UNWINDING",
+ "-Wparentheses",
);
OTHER_CPLUSPLUSFLAGS = (
"-fno-rtti",
@@ -2871,6 +2873,7 @@
INFOPLIST_FILE = "lldb-Info.plist";
INSTALL_PATH = /Developer/usr/bin;
LIBRARY_SEARCH_PATHS = "$(inherited)";
+ OTHER_CFLAGS = "-Wparentheses";
OTHER_LDFLAGS = (
"-sectcreate",
__TEXT,
@@ -2918,6 +2921,7 @@
OTHER_CFLAGS = (
"-DFOR_DYLD=0",
"-DSUPPORT_REMOTE_UNWINDING",
+ "-Wparentheses",
);
OTHER_CPLUSPLUSFLAGS = (
"-fno-rtti",
@@ -2959,6 +2963,7 @@
INSTALL_PATH = /Developer/usr/bin;
LIBRARY_SEARCH_PATHS = "$(inherited)";
ONLY_ACTIVE_ARCH = YES;
+ OTHER_CFLAGS = "-Wparentheses";
OTHER_LDFLAGS = (
"-sectcreate",
__TEXT,
@@ -2996,6 +3001,7 @@
INFOPLIST_FILE = "lldb-Info.plist";
INSTALL_PATH = /Developer/usr/bin;
LIBRARY_SEARCH_PATHS = "$(inherited)";
+ OTHER_CFLAGS = "-Wparentheses";
OTHER_LDFLAGS = (
"-sectcreate",
__TEXT,
Modified: lldb/trunk/tools/debugserver/debugserver.xcodeproj/project.pbxproj
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/debugserver/debugserver.xcodeproj/project.pbxproj?rev=107672&r1=107671&r2=107672&view=diff
==============================================================================
--- lldb/trunk/tools/debugserver/debugserver.xcodeproj/project.pbxproj (original)
+++ lldb/trunk/tools/debugserver/debugserver.xcodeproj/project.pbxproj Tue Jul 6 11:16:14 2010
@@ -501,6 +501,7 @@
GCC_PREPROCESSOR_DEFINITIONS = LLDB_DEBUGSERVER;
INSTALL_PATH = /Developer/usr/bin;
LLDB_DEBUGSERVER = 1;
+ OTHER_CFLAGS = "-Wparentheses";
OTHER_LDFLAGS = (
"-sectcreate",
__TEXT,
@@ -532,6 +533,7 @@
GCC_PREPROCESSOR_DEFINITIONS = LLDB_DEBUGSERVER;
INSTALL_PATH = /Developer/usr/bin;
LLDB_DEBUGSERVER = 1;
+ OTHER_CFLAGS = "-Wparentheses";
OTHER_LDFLAGS = (
"-sectcreate",
__TEXT,
@@ -561,6 +563,7 @@
GCC_PREPROCESSOR_DEFINITIONS = LLDB_DEBUGSERVER;
INSTALL_PATH = /Developer/usr/bin;
LLDB_DEBUGSERVER = 1;
+ OTHER_CFLAGS = "-Wparentheses";
OTHER_LDFLAGS = (
"-sectcreate",
__TEXT,
More information about the lldb-commits
mailing list