|
From: Brian P. <bri...@tu...> - 2008-09-11 14:43:15
|
chakradhar thota wrote: > Hi, > > > I downloaded Mesa 7.1 using git . I doubt makefiles available are > generated for x86 architecture. > I am working on MIPS and i cant use them for compiling Mesa on my > target. > So I tried to generate them using "configure" file available with > "./configure --build=mipsel-linux --with-x=no". > There is no X installed on my target so tried the above option. I > want to compile mesa without X support. > I got the following errors on running the above command. > Do you have any idea about this problem? How can I generate > makefiles for mips architecture overcoming the X lib issue? If you don't have X, I presume you're just interested in off-screen rendering with the OSMesa interface. You can build that configuration on linux with: make linux-osmesa You may need to run 'make realclean' first. The autoconf system probably assumes X is always present. -Brian |