summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2010-11-23 10:45:50 -0500
committerKristian Høgsberg <krh@bitplanet.net>2010-11-23 10:45:50 -0500
commitb6ba5bfbd24b032804df21420cc2938a1c237692 (patch)
treeaaeac9a6381a16364224bf44985a6c103a54f2e1
parent45d574243269b1f52ad87c4f601a70050a1f0541 (diff)
Update build instructions to use --disable-gallium-egl
-rw-r--r--building.html11
1 files changed, 6 insertions, 5 deletions
diff --git a/building.html b/building.html
index 4f19caf..c43bef5 100644
--- a/building.html
+++ b/building.html
@@ -41,14 +41,15 @@ master:</p>
<pre>
$ git clone git://anongit.freedesktop.org/mesa/mesa
$ cd mesa
- $ ./configure --prefix=$HOME/install --enable-egl --enable-gles2
+ $ ./configure --prefix=$HOME/install --enable-egl --enable-gles2 --disable-gallium-egl
$ make && make install
</pre>
-<p>If you're using an intel chipset, it's best to also pass
-<code>--disable-gallium</code> to ./configure, since otherwise libEGL
-will try to load the gallium sw rasterizer before loading the Intel
-DRI driver.</p>
+<p>
+ We disable Gallium EGL, which just means that libEGL won't try to
+ load the Gallium drivers directly. The Gallium drivers will be
+ built as DRI drivers, which the EGL loader will load just fine.
+</p>
<h2>libxkbcommon</h2>