public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP]  [PATCH] pan/scan.l: Fix a building error (resend)
@ 2011-02-21  9:14 Peng Haitao
  2011-02-22  6:59 ` Garrett Cooper
  0 siblings, 1 reply; 2+ messages in thread
From: Peng Haitao @ 2011-02-21  9:14 UTC (permalink / raw)
  To: Garrett Cooper; +Cc: ltp-list

Hi Garrett,

When compiling the ltp source, it will error. The error messages are:

...
flex -l -t scan.l > scan.c
gcc -g -O2 -g -O2 -fno-strict-aliasing -pipe -Wall  -Wno-error -I/home/pht/ltp-dev/pan -I../include -I../include  -c -o scan.o scan.c
scan.l: In function ‘yylex’:
scan.l:153: error: ‘yylineno’ undeclared (first use in this function)
scan.l:153: error: (Each undeclared identifier is reported only once
scan.l:153: error: for each function it appears in.)
make: *** [scan.o] Error 1
rm scan.c

"%option nolex-compat" can silence warning, but also make the global
variable "yylineno" undeclared. The following patch add "%option yylineno"
to make the global variable "yylineno" to be accessed.

Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
---
 pan/scan.l |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/pan/scan.l b/pan/scan.l
index 9696531..cc47bdf 100644
--- a/pan/scan.l
+++ b/pan/scan.l
@@ -91,6 +91,7 @@ static int check_mode(int, int, ...);
 %option noinput
 %option nolex-compat
 %option nounput
+%option yylineno
 
 UI      [0-9]+
 A       [a-zA-Z]+
-- 
1.7.3.1

-- 
Best Regards,
Peng Haitao











------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-02-22  6:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-21  9:14 [LTP] [PATCH] pan/scan.l: Fix a building error (resend) Peng Haitao
2011-02-22  6:59 ` Garrett Cooper

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox