I need to cross compile an application (written in C) using GNU autoconf/automake, but I cannot find which specific parameter values I have to pass to .configure to make it happen.
The system on which I'm compiling has an x86-64 architecture while the system on which the executable will run has an i386 architecture.
Googleing I found that I need to run
./configure --host=<cross-compiler for i386 architecture> --build=<my-system-architecture>
Is that right? Where can I find the information necessary to run correctly this command (i.e. parameter's values)?