Trying to build 3.1.1 on Solaris 10 (update 8) so I can enable SQL support. I've installed the required version of gcc, bison, flex, and etc.. per the INSTALL doc. Here is the error I get: (I've searched google all morning and find tons of others with this error but no solution) ./configure --prefix=/usr/local --enable-sql --enable-pcre checking for pkg-config... /bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for a BSD-compatible install... /usr/local/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/local/bin/mkdir -p checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking for gcc option to accept ISO C99... -std=gnu99 checking for bison... bison -y checking for flex... flex checking lex output file root... configure: error: cannot find output from flex; giving up I am using the following environment vars: CXX=g++ CFLAGS=-I/usr/local/include CPPFLAGS=-I/usr/local/include CC=gcc All my open source tools are under /usr/local. I have tried have /usr/ccs/bin in my PATH before /yusr/local/bin, tried having it after, and tried not having it in my PATH at all. Anyone have any ideas? Thx, CC
On Fri, Jul 30, 2010 at 06:46:14AM -0700, Chuck wrote:
Trying to build 3.1.1 on Solaris 10 (update 8) so I can enable SQL support. I've installed the required version of gcc, bison, flex, and etc.. per the INSTALL doc.
Here is the error I get: (I've searched google all morning and find tons of others with this error but no solution)
./configure --prefix=/usr/local --enable-sql --enable-pcre checking for pkg-config... /bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for a BSD-compatible install... /usr/local/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/local/bin/mkdir -p checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking for gcc option to accept ISO C99... -std=gnu99 checking for bison... bison -y checking for flex... flex checking lex output file root... configure: error: cannot find output from flex; giving up
I am using the following environment vars: CXX=g++ CFLAGS=-I/usr/local/include CPPFLAGS=-I/usr/local/include CC=gcc
All my open source tools are under /usr/local.
I have tried have /usr/ccs/bin in my PATH before /yusr/local/bin, tried having it after, and tried not having it in my PATH at all.
Anyone have any ideas?
Thx, CC
Did you check the config.log file? ./configure logs the exact error messages into this file. Just search for the string 'checking lex output file root'. If it's possible, please send in the excerpt of config.log from the line containing the 'checking ...' message to the first '## ---------------------- ##' line. -- Pal Tamas/Folti folti@balabit.hu
This is all it had: configure:4862: gcc -std=gnu99 -c -I/usr/local/include -I/usr/local/include conftest.c >&5 configure:4862: $? = 0 configure:4882: result: -std=gnu99 configure:4897: checking for bison configure:4913: found /usr/local/bin/bison configure:4924: result: bison -y configure:4941: checking for flex configure:4957: found /usr/local/bin/flex configure:4968: result: flex configure:5005: flex conftest.l ./configure: line 5007: /usr/local/bin/flex: Invalid argument configure:5009: $? = 126 configure:5011: checking lex output file root configure:5022: error: cannot find output from flex; giving up ## ---------------- ## ## Cache variables. ## ## ---------------- ## -CC On Fri, Jul 30, 2010 at 7:10 AM, Pal Tamas <folti@balabit.hu> wrote:
On Fri, Jul 30, 2010 at 06:46:14AM -0700, Chuck wrote:
Trying to build 3.1.1 on Solaris 10 (update 8) so I can enable SQL
support.
I've installed the required version of gcc, bison, flex, and etc.. per the INSTALL doc.
Here is the error I get: (I've searched google all morning and find tons of others with this error but no solution)
./configure --prefix=/usr/local --enable-sql --enable-pcre checking for pkg-config... /bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for a BSD-compatible install... /usr/local/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /usr/local/bin/mkdir -p checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of gcc... gcc3 checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) gcc3 checking for gcc option to accept ISO C99... -std=gnu99 checking for bison... bison -y checking for flex... flex checking lex output file root... configure: error: cannot find output from flex; giving up
I am using the following environment vars: CXX=g++ CFLAGS=-I/usr/local/include CPPFLAGS=-I/usr/local/include CC=gcc
All my open source tools are under /usr/local.
I have tried have /usr/ccs/bin in my PATH before /yusr/local/bin, tried having it after, and tried not having it in my PATH at all.
Anyone have any ideas?
Thx, CC Did you check the config.log file? ./configure logs the exact error messages into this file. Just search for the string 'checking lex output file root'. If it's possible, please send in the excerpt of config.log from the line containing the 'checking ...' message to the first '## ---------------------- ##' line.
-- Pal Tamas/Folti folti@balabit.hu
______________________________________________________________________________ Member info: https://lists.balabit.hu/mailman/listinfo/syslog-ng Documentation: http://www.balabit.com/support/documentation/?product=syslog-ng FAQ: http://www.campin.net/syslog-ng/faq.html
On Fri, Jul 30, 2010 at 07:16:38AM -0700, Chuck wrote:
This is all it had:
configure:4862: gcc -std=gnu99 -c -I/usr/local/include -I/usr/local/include conftest.c >&5 configure:4862: $? = 0 configure:4882: result: -std=gnu99 configure:4897: checking for bison configure:4913: found /usr/local/bin/bison configure:4924: result: bison -y configure:4941: checking for flex configure:4957: found /usr/local/bin/flex configure:4968: result: flex configure:5005: flex conftest.l ./configure: line 5007: /usr/local/bin/flex: Invalid argument configure:5009: $? = 126 configure:5011: checking lex output file root configure:5022: error: cannot find output from flex; giving up
## ---------------- ## ## Cache variables. ## ## ---------------- ##
-CC
Does /usr/local/bin/flex works? Like '/usr/local/bin/flex --help' displays the help? Does running '/usr/local/bin/flex conftest.l'* from the command line generates c source from the .l file? (usually named lex.yy.c or lexyy.c). * ./configure's conftest.l contains this on my computer: ----- CUT HERE ----- %% a { ECHO; } b { REJECT; } c { yymore (); } d { yyless (1); } e { yyless (input () != 0); } f { unput (yytext[0]); } . { BEGIN INITIAL; } %% #ifdef YYTEXT_POINTER extern char *yytext; #endif int main (void) { return ! yylex () + ! yywrap (); } ----- CUT HERE ----- -- Pal Tamas/Folti folti@balabit.hu
participants (2)
-
Chuck
-
Pal Tamas