views:

44

answers:

2

When trying to compile GNU software on HP-UX (binutils for example) I'm getting error meggages about unsatisfied symbols yyfnd, yyextra, yytextuc, yyolsp ...

Some software can't be compiled using HP-UX own lex so i've included byacc and flex executables in my PATH. Is it HP-UX lex problem? How to fix it?

+1  A: 

Have you tried building with -lfl and/or -ly?

Nikolai N Fetissov
+1  A: 

Do you actually need the flex function or can you just try export LEXLIB=" " ?

LB