diff --git a/docs/autoconf.html b/docs/autoconf.html index fcf4efa100c..2ef8c63dbee 100644 --- a/docs/autoconf.html +++ b/docs/autoconf.html @@ -143,12 +143,13 @@ assembly will not be used.
it's running on. In order to build cross-compile Mesa on a x86-64 machine that is to run on a i686, one would need to set the options to: ---build=i686-pc-linux-gnu --host=i686-pc-linux-gnu
--build=x86_64-pc-linux-gnu --host=i686-pc-linux-gnu
PKG_CONFIG_PATH as well.
In some cases a single compiler is capable of handling both architectures @@ -158,9 +159,10 @@ further information - gcc machine dependent options
-The following should be sufficient to configure multilib Mesa
+In addition to specifying correct PKG_CONFIG_PATH for the target
+architecture, the following should be sufficient to configure multilib Mesa
./configure CC="gcc -m32" CXX="g++ -m32" --build=i686-pc-linux-gnu --host=i686-pc-linux-gnu ...
+./configure CC="gcc -m32" CXX="g++ -m32" --build=x86_64-pc-linux-gnu --host=i686-pc-linux-gnu ...