cver on sparc

J

Jason Zheng

Guest
Has anyone compiled cver on a sparc platform?

I tried to compile it on a sun blade 1000 workstation, but i get the
following error:

gcc -mcpu=v8 -pipe -Wall -I../pli_incs -fno-strength-reduce
-fomit-frame-pointer -O2 --export-dynamic ../objs/dig_main.o
.../objs/cver.o ../objs/v_src.o ../objs/v_src2.o ../objs/v_src3.o
.../objs/v_fx.o ../objs/v_fx2.o ../objs/v_fx3.o ../objs/v_cnv.o
.../objs/v_ex.o ../objs/v_ex2.o ../objs/v_ex3.o ../objs/v_ex4.o
.../objs/v_trch.o ../objs/v_del.o ../objs/v_sdf.o ../objs/v_prp.o
.../objs/v_prp2.o ../objs/v_sim.o ../objs/v_dbg.o ../objs/v_dbg2.o
.../objs/v_ms.o ../objs/v_tf.o ../objs/v_acc.o ../objs/v_vpi.o
.../objs/v_vpi2.o ../objs/v_vpi3.o \
-lm -ldl -o ../bin/cver
Undefined first referenced
symbol in file
strerror_r ../objs/v_ex.o
ld: fatal: Symbol referencing errors. No output written to ../bin/cver
collect2: ld returned 1 exit status
*** Error code 1
make: Fatal error: Command failed for target `cver'

I'm using gcc3.0 and gpl cver 2.10a source.

Thanks in advance.
 
Jason Zheng wrote:
Has anyone compiled cver on a sparc platform?

I tried to compile it on a sun blade 1000 workstation, but i get the
following error:
(snip)

Undefined first referenced
symbol in file
strerror_r ../objs/v_ex.o
ld: fatal: Symbol referencing errors. No output written to ../bin/cver
strerror_r is the reentrant version (with an extra argument) of
the C library strerror routine. It seems that Solaris doesn't have one.

It might be that source is readily available, though I am surprised that
to configuration script didn't figure it out.

-- glen
 
glen herrmannsfeldt wrote:
Jason Zheng wrote:

Has anyone compiled cver on a sparc platform?


I tried to compile it on a sun blade 1000 workstation, but i get the
following error:


(snip)

Undefined first referenced
symbol in file
strerror_r ../objs/v_ex.o
ld: fatal: Symbol referencing errors. No output written to ../bin/cver


strerror_r is the reentrant version (with an extra argument) of
the C library strerror routine. It seems that Solaris doesn't have one.

It might be that source is readily available, though I am surprised that
to configuration script didn't figure it out.

-- glen

cver source tarball didn't come with a configure script. Do you know of
any detour to this issue?

thanks,

Jason Zheng
 

Welcome to EDABoard.com

Sponsor

Back
Top