think it's march but it also depends on the configure script what it supports I would do ./configure --help to see<br><br>
<div><span class="gmail_quote">On 4/12/07, <b class="gmail_sendername">Robert Wolfe</b> <<a href="mailto:rwolfe@shatterit.com">rwolfe@shatterit.com</a>> wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Ken, is there a way that I can specify that on the configure command line?<br><br>Ken Smith wrote:<br>> On Thu, 2007-04-12 at 05:52 -0400, Robert Wolfe wrote:
<br>><br>>> Hi all! I was wondering if it were possible to build 32-bit binaries on<br>>> an x86_64 version of Linux so that the binaries generated can be run on<br>>> 32-bit Linux? And if so, HOW?<br>
>><br>><br>> Include "-m32" on the command line when running the compiler.<br>> Demonstration set of commands on a machine named nickelback:<br>><br>> nickelback 78 % cat hello.c<br>> #include <
stdio.h><br>><br>> int<br>> main(int argc, char *argv[])<br>> {<br>> printf("Hello World!\n");<br>> }<br>> nickelback 79 % uname -p<br>> x86_64<br>> nickelback 80 % cc -O hello.c
-o hello<br>> nickelback 81 % file hello<br>> hello: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.4.0, dynamically linked (uses shared libs), not stripped<br>> nickelback 82 % cc -m32 -O
hello.c -o hello<br>> nickelback 83 % file hello<br>> hello: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.2.5, dynamically linked (uses shared libs), not stripped<br>> nickelback 84 %
<br>><br>><br><br><br>--<br>Robert Wolfe (MCP/Linux+) <<a href="mailto:rwolfe@shatterit.com">rwolfe@shatterit.com</a>><br>Shatter I.T. Global Services, Buffalo, NY<br><a href="http://www.shatterit.com">http://www.shatterit.com
</a><br><br>_______________________________________________<br>nflug mailing list<br><a href="mailto:nflug@nflug.org">nflug@nflug.org</a><br><a href="http://www.nflug.org/mailman/listinfo/nflug">http://www.nflug.org/mailman/listinfo/nflug
</a><br></blockquote></div><br>