Manta Interactive Ray Tracer Development Mailing List

Text archives Help


Re: [MANTA] link error on Arachne with manta


Chronological Thread 
  • From: James Bigler <bigler@cs.utah.edu>
  • Cc: manta@sci.utah.edu
  • Subject: Re: [MANTA] link error on Arachne with manta
  • Date: Fri, 30 Jun 2006 11:55:54 -0600

This path should just work. Did you try and change from a 64 bit build to a 32 bit one or try use an already 32 bit configured build on arachne, and it is just getting confused?

Try to configure from scratch and see if you still have the problem.

James

Abe Stephens wrote:
Having 32 bit library paths on a 64bit build. If you are using a 64 bit build, see if you can get it to use X11R6/lib64/ instead.

Abe

Aaron Knoll wrote:

Has anyone tried compiling/linking manta on arachne, and gotten this error:

ld: skipping incompatible /usr/X11R6/lib/libSM.so when searching for - lSM
ld: skipping incompatible /usr/X11R6/lib/libSM.a when searching for -lSM
ld: cannot find -lSM

What could cause this?

-Aaron

On Jun 30, 2006, at 11:39 AM, James Bigler wrote:

There's some code in RayPacket.h that looks like this:

      SSE_MaxSize   = RAYPACKET_MAXSIZE/4,

Now if RAYPACKET_MAXSIZE happens to not be a multiple of 4 would things go badly?

RAYPACKET_MAXSIZE = 1, SSE_MaxSize = 0
RAYPACKET_MAXSIZE = 6, SSE_MaxSize = 1

Should it be something more like:

      SSE_MaxSize   = (RAYPACKET_MAXSIZE+3)/4,

Thanks,
James








Archive powered by MHonArc 2.6.16.

Top of page