mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-13 19:52:20 +00:00
linux.cf: add some gcc system include paths to makedepend. Shaves about 5150 more warnings off (makedepend) :)
This is on ubuntu. You may wany to add additional -I... entries for other linux systems, if the ones I added for i386 and x86_64 don't help.
This commit is contained in:
parent
53e7adfc5f
commit
d2c0ceaaf6
1 changed files with 5 additions and 1 deletions
|
@ -91,7 +91,7 @@ XCOMM binutils: (LinuxBinUtilsMajorVersion)
|
|||
#define SetTtyGroup YES
|
||||
|
||||
#define CcCmd gcc -g -pipe
|
||||
#define CplusplusCmd g++ -g -pipe -fpermissive
|
||||
#define CplusplusCmd g++ -g -pipe -fpermissive
|
||||
#define AsCmd as
|
||||
#define LdCmd ld
|
||||
|
||||
|
@ -169,6 +169,8 @@ XCOMM binutils: (LinuxBinUtilsMajorVersion)
|
|||
#define HasPlugin YES
|
||||
#define VendorHasX11R6_3libXext YES /* XC or XFree86 3.3.1 */
|
||||
#endif
|
||||
/* add this to void screenfuls of warnings from makedepend */
|
||||
#define DependFlags -I/usr/include/i386-linux-gnu
|
||||
#endif /* i386Architecture */
|
||||
|
||||
#ifdef AMD64Architecture
|
||||
|
@ -181,6 +183,8 @@ XCOMM binutils: (LinuxBinUtilsMajorVersion)
|
|||
#define HasPlugin YES
|
||||
#define VendorHasX11R6_3libXext YES /* XC or XFree86 3.3.1 */
|
||||
#endif
|
||||
/* add this to void screenfuls of warnings from makedepend */
|
||||
#define DependFlags -I/usr/include/x86_64-linux-gnu
|
||||
#endif /* AMD64Architecture */
|
||||
|
||||
#ifdef PpcArchitecture
|
||||
|
|
Loading…
Reference in a new issue