At 2:56 PM -0700 6/25/01, Maxim, Michael wrote:
> same link error. :/  Any ideas?
>
>Link /NoTrace/NoMap /Shareable=[--.LIB.AUTO.RE]PL_RE.EXE
>re.opt/Option,[--]perlshr_attr.opt/Option
>%LINK-W-NUDFSYMS, 3 undefined symbols:
>%LINK-I-UDFSYM,         PL_REGKIND
>%LINK-I-UDFSYM,         PL_SIMPLE
>%LINK-I-UDFSYM,         PL_VARIES

These are all constants and should be defined in include files in
your main source directory like so:

$ search *.h pl_regkind, pl_simple, pl_varies

******************************
D0:[CRAIG.KITS.PERLBUILD.SOURCE]REGCOMP.H;1

EXTCONST U8 PL_varies[];
EXTCONST U8 PL_varies[] = {
EXTCONST U8 PL_simple[];
EXTCONST U8 PL_simple[] = {

******************************
D0:[CRAIG.KITS.PERLBUILD.SOURCE]REGNODES.H;1

EXTCONST U8 PL_regkind[];
EXTCONST U8 PL_regkind[] = {

Possibly something is messed up with the definitions of EXTCONST or
U8.  I've certainly never seen anything quite like this problem.
Peter, you did get a successful build on VAX 7.1?
-- 
____________________________________________
Craig A. Berry                  
mailto:[EMAIL PROTECTED]

"Literary critics usually know what they're
talking about. Even if they're wrong."
        -- Perl creator Larry Wall

Reply via email to