Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[MANTA] link error on Arachne with manta


Chronological Thread 
  • From: Aaron Knoll <knolla@cs.utah.edu>
  • To: manta@sci.utah.edu
  • Subject: [MANTA] link error on Arachne with manta
  • Date: Fri, 30 Jun 2006 11:45:22 -0600

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