Project

General

Profile

Actions

Bug #277

closed

xlint(1) patch

Added by bill.marquette over 17 years ago. Updated over 17 years ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Category:
-
Target version:
-
Start date:
Due date:
% Done:

0%

Estimated time:

Description

Looks like lint won't run with gcc 3 w/out some tweaks. Here's a
patch that allows lint to run (noisily) against itself, stolen from
OpenBSD; probably it ought to be sync'd again from NetBSD where it
came from, this at least allows it to "do something" again.

--Bill

Index: usr.bin/xlint/xlint/xlint.c ===================================================================
RCS file: /home/dcvs/src/usr.bin/xlint/xlint/xlint.c,v
retrieving revision 1.11
diff u -r1.11 xlint.c
--
usr.bin/xlint/xlint/xlint.c 5 Apr 2005 08:19:35 -0000 1.11
+++ usr.bin/xlint/xlint/xlint.c 6 Jul 2006 22:59:29 -0000
@ -308,9 +308,19 @
libs = xcalloc(1, sizeof (char *));
libsrchpath = xcalloc(1, sizeof (char *));

- appcstrg(&cppflags, "-lang-c");
+ appcstrg(&cppflags, "-x");
+ appcstrg(&cppflags, "c");
+ appcstrg(&cppflags, "-undef");
+ /* even with undef cpp still identifies as GNUC */
+ appcstrg(&cppflags, "-U__GNUC__");
#if defined(GNUC)
#if GNUC < 3
appcstrg(&cppflags, "
$");
appcstrg(&cppflags, "-C");
#else
appcstrg(&cppflags, "-CC");
#endif
#endif
appcstrg(&cppflags, "-Wcomment");
#ifdef DragonFly
appcstrg(&cppflags, "-D__DragonFly__=" XSTRING(__DragonFly));

Actions #1

Updated by bill.marquette over 17 years ago

Not sure if this got missed, or if someone was waiting on something
else. lint doesn't work at all right now w/out this patch. Also at
http://www.pfsense.org/~billm/dfly/xlint.patch

--Bill

On 8/2/06, Bill Marquette <> wrote:

Looks like lint won't run with gcc 3 w/out some tweaks. Here's a
patch that allows lint to run (noisily) against itself, stolen from
OpenBSD; probably it ought to be sync'd again from NetBSD where it
came from, this at least allows it to "do something" again.

--Bill

Index: usr.bin/xlint/xlint/xlint.c ===================================================================
RCS file: /home/dcvs/src/usr.bin/xlint/xlint/xlint.c,v
retrieving revision 1.11
diff u -r1.11 xlint.c
--
usr.bin/xlint/xlint/xlint.c 5 Apr 2005 08:19:35 -0000 1.11
+++ usr.bin/xlint/xlint/xlint.c 6 Jul 2006 22:59:29 -0000
@ -308,9 +308,19 @
libs = xcalloc(1, sizeof (char *));
libsrchpath = xcalloc(1, sizeof (char *));

- appcstrg(&cppflags, "-lang-c");
+ appcstrg(&cppflags, "-x");
+ appcstrg(&cppflags, "c");
+ appcstrg(&cppflags, "-undef");
+ /* even with undef cpp still identifies as GNUC */
+ appcstrg(&cppflags, "-U__GNUC__");
#if defined(GNUC)
#if GNUC < 3
appcstrg(&cppflags, "
$");
appcstrg(&cppflags, "-C");
#else
appcstrg(&cppflags, "-CC");
#endif
#endif
appcstrg(&cppflags, "-Wcomment");
#ifdef DragonFly
appcstrg(&cppflags, "-D__DragonFly__=" XSTRING(__DragonFly));

Actions #2

Updated by corecode over 17 years ago

Thanks, committed!

Actions

Also available in: Atom PDF