<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.26.0">
</HEAD>
<BODY>
On Tue, 2010-07-13 at 20:47 +0300, Martin-&#201;ric Racine wrote:<BR>
<BLOCKQUOTE TYPE=CITE>
    <TT><FONT COLOR="#1a1a1a">1) to transform the current check for 64-bit CPU to make it add -m32</FONT></TT><BR>
    <TT><FONT COLOR="#1a1a1a">to CFLAGS if the build host is a 64-bit.</FONT></TT><BR>
    <BR>
</BLOCKQUOTE>
I had tried this compiler option a while ago:
<BLOCKQUOTE>
<PRE>
/usr/include/gnu/stubs.h:7:27: error: gnu/stubs-32.h: No such file or directory
</PRE>
</BLOCKQUOTE>
This is just as mysterious as the durango.c assembler error I normally get. This can be mitigated with AC_CHECK_HEADERS and config.h. A user could also install the the 32 bit development libraries (libc6-dev-i386 on Debian).<BR>
<BR>
There is yet another potential issue. The drivers are part of the server which has been compiled in 64 bit. In xorg-server.h:
<BLOCKQUOTE>
<PRE>
/* Define to 1 if unsigned long is 64 bits. */
#define _XSERVER64 1
</PRE>
</BLOCKQUOTE>
This value influences the number of bytes on the wire for client/server communication. Each compilation unit must include xorg-server.h. By using -m32, long will be 32 bits but server code will assume otherwise. I can't really predict one way or the other, it's something I ran into.<BR>
<BR>
Gaetan
</BODY>
</HTML>