Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 1 | <HTML> |
| 2 | |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 3 | <TITLE>Compiling and Installing</TITLE> |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 4 | |
Brian Paul | 36da045 | 2005-01-20 03:55:10 +0000 | [diff] [blame] | 5 | <link rel="stylesheet" type="text/css" href="mesa.css"></head> |
| 6 | |
| 7 | <BODY> |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 8 | |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 9 | |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 10 | <H1>Compiling and Installing</H1> |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 11 | |
| 12 | <ol> |
| 13 | <li><a href="#unix-x11">Unix / X11</a> |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 14 | <ul> |
Brian Paul | 32a11e5 | 2011-04-04 11:30:46 -0600 | [diff] [blame^] | 15 | <li><a href="#prereq-general">General prerequisites for building</a> |
| 16 | <li><a href="#prereq-dri">Prerequisites for DRI and hardware acceleration</a> |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 17 | <li><a href="#autoconf">Building with autoconf</a> |
| 18 | <li><a href="#traditional">Building with traditional Makefiles</a> |
| 19 | <li><a href="#libs">The Libraries</a> |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 20 | <li><a href="#install">Installing the header and library files |
| 21 | <li><a href="#pkg-config">Building OpenGL programs with pkg-config |
| 22 | </ul> |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 23 | <li><a href="#windows">Windows</a> |
Brian Paul | 32a11e5 | 2011-04-04 11:30:46 -0600 | [diff] [blame^] | 24 | <li><a href="#scons">Building with SCons</a> |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 25 | <li><a href="#other">Other</a> |
| 26 | </ol> |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 27 | <br> |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 28 | |
| 29 | |
| 30 | <a name="unix-x11"> |
| 31 | <H2>1. Unix/X11 Compilation and Installation</H1> |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 32 | |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 33 | |
Brian Paul | 32a11e5 | 2011-04-04 11:30:46 -0600 | [diff] [blame^] | 34 | <a name="prereq-general"> |
| 35 | <h3>1.1 General prerequisites for building</h3> |
| 36 | |
| 37 | <ul> |
| 38 | <li>lex / yacc - for building the GLSL compiler. |
| 39 | On Linux systems, flex and bison are used. |
| 40 | Versions 2.5.35 and 2.4.1, respectively, (or later) should work. |
| 41 | </li> |
| 42 | <li>python - Python is needed for building the Gallium components. |
| 43 | Version 2.6.4 or later should work. |
| 44 | </li> |
| 45 | </ul> |
| 46 | |
| 47 | |
| 48 | <a name="prereq-dri"> |
| 49 | <h3>1.2 Prerequisites for DRI and hardware acceleration</h3> |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 50 | |
| 51 | <p> |
Brian Paul | 9069248 | 2009-10-08 20:49:32 -0600 | [diff] [blame] | 52 | The following are required for DRI-based hardware acceleration with Mesa: |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 53 | </p> |
| 54 | |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 55 | <ul> |
Brian Paul | d0c2cbd | 2009-01-08 17:19:51 -0700 | [diff] [blame] | 56 | <li><a href="http://xorg.freedesktop.org/releases/individual/proto/">dri2proto</a> version 1.99.3 or later |
Brian Paul | 2c56dd7 | 2009-01-10 11:52:55 -0700 | [diff] [blame] | 57 | <li>Linux 2.6.28 |
| 58 | <li><a href="http://dri.freedesktop.org/libdrm/" target="_parent">libDRM</a> |
Brian Paul | 9069248 | 2009-10-08 20:49:32 -0600 | [diff] [blame] | 59 | version 2.4.15 or later |
Brian Paul | 2c56dd7 | 2009-01-10 11:52:55 -0700 | [diff] [blame] | 60 | <li>Xorg server version 1.5 or later |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 61 | </ul> |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 62 | </p> |
| 63 | |
| 64 | |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 65 | <a name="autoconf"> |
Brian Paul | 32a11e5 | 2011-04-04 11:30:46 -0600 | [diff] [blame^] | 66 | <h3>1.3 Building with Autoconf</h3> |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 67 | |
| 68 | <p> |
| 69 | Mesa may be <a href="autoconf.html">built using autoconf</a>. |
| 70 | This should work well on most GNU-based systems. |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 71 | If that fails the traditional Mesa build system is available. |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 72 | |
| 73 | |
| 74 | |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 75 | <a name="traditional"> |
Brian Paul | 32a11e5 | 2011-04-04 11:30:46 -0600 | [diff] [blame^] | 76 | <h3>1.4 Building with traditional Makefiles</h3> |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 77 | |
| 78 | <p> |
| 79 | The traditional Mesa build system is based on a collection of pre-defined |
| 80 | system configurations. |
| 81 | </p> |
| 82 | <p> |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 83 | To see the list of configurations, just type <code>make</code>. |
| 84 | Then choose a configuration from the list and type <code>make</code> |
| 85 | <em>configname</em>. |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 86 | </p> |
| 87 | |
| 88 | <p> |
| 89 | Mesa may be built in several different ways using the predefined configurations: |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 90 | </p> |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 91 | <ul> |
Brian Paul | 5dbd0a4 | 2006-06-08 23:42:07 +0000 | [diff] [blame] | 92 | <li><b><em>Stand-alone/Xlib mode</em></b> - Mesa will be compiled as |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 93 | a software renderer using Xlib to do all rendering. |
Brian Paul | 5dbd0a4 | 2006-06-08 23:42:07 +0000 | [diff] [blame] | 94 | The libGL.so library will be a self-contained rendering library that will |
| 95 | allow you to run OpenGL/GLX applications on any X server (regardless of |
| 96 | whether it supports the GLX X server extension). |
Brian Paul | d9eff8b | 2006-07-12 20:14:43 +0000 | [diff] [blame] | 97 | You will <em>not</em> be able to use hardware 3D acceleration. |
Brian Paul | b0eee79 | 2003-03-16 16:43:04 +0000 | [diff] [blame] | 98 | <p> |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 99 | To compile stand-alone Mesa type <code>make</code> in the top-level directory. |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 100 | You'll see a list of supported system configurations. |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 101 | Choose one from the list (such as linux-x86), and type: |
| 102 | </p> |
| 103 | <pre> |
| 104 | make linux-x86 |
| 105 | </pre> |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 106 | <p>This will produce libGL.so and several other libraries</p> |
| 107 | </li> |
| 108 | |
Brian Paul | 5dbd0a4 | 2006-06-08 23:42:07 +0000 | [diff] [blame] | 109 | <li><b><em>DRI/accelerated</em></b> - The DRI hardware drivers for |
| 110 | accelerated OpenGL rendering (for ATI, Intel, Matrox, etc) will be built. |
| 111 | The libGL.so library will support the GLX extension and will load/use |
| 112 | the DRI hardware drivers. |
| 113 | |
Brian Paul | 5dbd0a4 | 2006-06-08 23:42:07 +0000 | [diff] [blame] | 114 | |
| 115 | <p> |
| 116 | Build Mesa and the DRI hardware drivers by running |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 117 | </p> |
| 118 | <pre> |
Brian Paul | 5dbd0a4 | 2006-06-08 23:42:07 +0000 | [diff] [blame] | 119 | make linux-dri |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 120 | </pre> |
| 121 | <p> |
| 122 | There are also <code>linux-dri-x86</code>, <code>linux-dri-x86-64</code>, |
Brian Paul | 5dbd0a4 | 2006-06-08 23:42:07 +0000 | [diff] [blame] | 123 | and <code>linux-ppc</code> configurations which are optimized for those |
| 124 | architectures. |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 125 | </p> |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 126 | <p> |
| 127 | Make sure you have the prerequisite versions of DRM and Xserver mentioned |
| 128 | above. |
| 129 | </p> |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 130 | |
| 131 | </li> |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 132 | |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 133 | </ul> |
| 134 | |
| 135 | |
| 136 | <p> |
| 137 | Later, if you want to rebuild for a different configuration run |
Brian Paul | 26f334a | 2004-03-26 15:20:08 +0000 | [diff] [blame] | 138 | <code>make realclean</code> before rebuilding. |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 139 | </p> |
| 140 | |
Brian Paul | 26f334a | 2004-03-26 15:20:08 +0000 | [diff] [blame] | 141 | |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 142 | <a name="libs"> |
Brian Paul | 32a11e5 | 2011-04-04 11:30:46 -0600 | [diff] [blame^] | 143 | <h3>1.5 The libraries</h3> |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 144 | |
| 145 | <p> |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 146 | When compilation has finished, look in the top-level <code>lib/</code> |
Brian Paul | d9eff8b | 2006-07-12 20:14:43 +0000 | [diff] [blame] | 147 | (or <code>lib64/</code>) directory. |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 148 | You'll see a set of library files similar to this: |
| 149 | </p> |
| 150 | <pre> |
Brian Paul | 26f334a | 2004-03-26 15:20:08 +0000 | [diff] [blame] | 151 | lrwxrwxrwx 1 brian users 10 Mar 26 07:53 libGL.so -> libGL.so.1* |
| 152 | lrwxrwxrwx 1 brian users 19 Mar 26 07:53 libGL.so.1 -> libGL.so.1.5.060100* |
| 153 | -rwxr-xr-x 1 brian users 3375861 Mar 26 07:53 libGL.so.1.5.060100* |
| 154 | lrwxrwxrwx 1 brian users 11 Mar 26 07:53 libGLU.so -> libGLU.so.1* |
| 155 | lrwxrwxrwx 1 brian users 20 Mar 26 07:53 libGLU.so.1 -> libGLU.so.1.3.060100* |
| 156 | -rwxr-xr-x 1 brian users 549269 Mar 26 07:53 libGLU.so.1.3.060100* |
| 157 | lrwxrwxrwx 1 brian users 12 Mar 26 07:53 libglut.so -> libglut.so.3* |
| 158 | lrwxrwxrwx 1 brian users 16 Mar 26 07:53 libglut.so.3 -> libglut.so.3.7.1* |
| 159 | -rwxr-xr-x 1 brian users 597754 Mar 26 07:53 libglut.so.3.7.1* |
| 160 | lrwxrwxrwx 1 brian users 11 Mar 26 08:04 libGLw.so -> libGLw.so.1* |
| 161 | lrwxrwxrwx 1 brian users 15 Mar 26 08:04 libGLw.so.1 -> libGLw.so.1.0.0* |
| 162 | -rwxr-xr-x 1 brian users 20750 Mar 26 08:04 libGLw.so.1.0.0* |
| 163 | lrwxrwxrwx 1 brian users 14 Mar 26 07:53 libOSMesa.so -> libOSMesa.so.6* |
| 164 | lrwxrwxrwx 1 brian users 23 Mar 26 07:53 libOSMesa.so.6 -> libOSMesa.so.6.1.060100* |
| 165 | -rwxr-xr-x 1 brian users 23871 Mar 26 07:53 libOSMesa.so.6.1.060100* |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 166 | </pre> |
| 167 | |
| 168 | <p> |
| 169 | <b>libGL</b> is the main OpenGL library (i.e. Mesa). |
| 170 | <br> |
| 171 | <b>libGLU</b> is the OpenGL Utility library. |
| 172 | <br> |
| 173 | <b>libglut</b> is the GLUT library. |
Brian Paul | 26f334a | 2004-03-26 15:20:08 +0000 | [diff] [blame] | 174 | <br> |
| 175 | <b>libGLw</b> is the Xt/Motif OpenGL drawing area widget library. |
| 176 | <br> |
| 177 | <b>libOSMesa</b> is the OSMesa (Off-Screen) interface library. |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 178 | </p> |
| 179 | |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 180 | <p> |
| 181 | If you built the DRI hardware drivers, you'll also see the DRI drivers: |
| 182 | </p> |
| 183 | <pre> |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 184 | -rwxr-xr-x 1 brian users 15607851 Jul 21 12:11 ffb_dri.so |
| 185 | -rwxr-xr-x 1 brian users 15148747 Jul 21 12:11 i810_dri.so |
| 186 | -rwxr-xr-x 1 brian users 14497814 Jul 21 12:11 i830_dri.so |
| 187 | -rwxr-xr-x 1 brian users 16895413 Jul 21 12:11 i915_dri.so |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 188 | -rwxr-xr-x 1 brian users 11320803 Jul 21 12:11 mach64_dri.so |
| 189 | -rwxr-xr-x 1 brian users 11418014 Jul 21 12:12 mga_dri.so |
| 190 | -rwxr-xr-x 1 brian users 11064426 Jul 21 12:12 r128_dri.so |
| 191 | -rwxr-xr-x 1 brian users 11849858 Jul 21 12:12 r200_dri.so |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 192 | -rwxr-xr-x 1 brian users 16050488 Jul 21 12:11 r300_dri.so |
Brian Paul | f87bb14 | 2005-07-21 18:45:44 +0000 | [diff] [blame] | 193 | -rwxr-xr-x 1 brian users 11757388 Jul 21 12:12 radeon_dri.so |
| 194 | -rwxr-xr-x 1 brian users 11232304 Jul 21 12:13 s3v_dri.so |
| 195 | -rwxr-xr-x 1 brian users 11062970 Jul 21 12:13 savage_dri.so |
| 196 | -rwxr-xr-x 1 brian users 11214212 Jul 21 12:13 sis_dri.so |
| 197 | -rwxr-xr-x 1 brian users 11368736 Jul 21 12:13 tdfx_dri.so |
| 198 | -rwxr-xr-x 1 brian users 10598868 Jul 21 12:13 trident_dri.so |
| 199 | -rwxr-xr-x 1 brian users 10997120 Jul 21 12:13 unichrome_dri.so |
| 200 | </pre> |
| 201 | |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 202 | <p> |
Brian Paul | 32a11e5 | 2011-04-04 11:30:46 -0600 | [diff] [blame^] | 203 | If you built with Gallium support, look in lib/gallium/ for Gallium-based |
| 204 | versions of libGL and device drivers. |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 205 | </p> |
| 206 | |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 207 | |
| 208 | |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 209 | <a name="install"> |
Brian Paul | 8bd70a7 | 2008-05-27 13:27:57 -0600 | [diff] [blame] | 210 | <H3>1.6 Installing the header and library files</H3> |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 211 | |
| 212 | <p> |
| 213 | The standard location for the OpenGL header files on Unix-type systems is |
| 214 | in <code>/usr/include/GL/</code>. |
| 215 | The standard location for the libraries is <code>/usr/lib/</code>. |
| 216 | For more information see, the |
| 217 | <a href="http://oss.sgi.com/projects/ogl-sample/ABI/" target="_parent"> |
| 218 | Linux/OpenGL ABI specification</a>. |
| 219 | </p> |
| 220 | |
| 221 | <p> |
| 222 | If you'd like Mesa to co-exist with another implementation of OpenGL that's |
| 223 | already installed, you'll have to choose different directories, like |
| 224 | <code>/usr/local/include/GL/</code> and <code>/usr/local/lib/</code>. |
| 225 | </p> |
| 226 | |
| 227 | <p> |
Brian Paul | d9eff8b | 2006-07-12 20:14:43 +0000 | [diff] [blame] | 228 | To install Mesa's headers and libraries, run <code>make install</code>. |
| 229 | But first, check the Mesa/configs/default file and examine the values |
| 230 | of the <b>INSTALL_DIR</b> and <b>DRI_DRIVER_INSTALL_DIR</b> variables. |
Dan Nicholson | f5557c3 | 2007-09-12 09:57:53 -0600 | [diff] [blame] | 231 | Change them if needed, then run <code>make install</code>. |
| 232 | </p> |
| 233 | |
| 234 | <p> |
| 235 | The variable |
| 236 | <b>DESTDIR</b> may also be used to install the contents to a temporary |
| 237 | staging directory. |
| 238 | This can be useful for package management. |
| 239 | For example: <code>make install DESTDIR=/somepath/</code> |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 240 | </p> |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 241 | |
| 242 | <p> |
Brian Paul | d9eff8b | 2006-07-12 20:14:43 +0000 | [diff] [blame] | 243 | Note: at runtime you can use the LD_LIBRARY_PATH environment variable |
| 244 | (on Linux at least) to switch |
| 245 | between the Mesa libraries and other vendor's libraries whenever you want. |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 246 | This is a handy way to compare multiple OpenGL implementations. |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 247 | </p> |
| 248 | |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 249 | |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 250 | <a name="pkg-config"> |
| 251 | <H3>1.7 Building OpenGL programs with pkg-config</H3> |
Brian | 5bba58c | 2007-09-12 10:11:49 -0600 | [diff] [blame] | 252 | |
| 253 | <p> |
| 254 | Running <code>make install</code> will install package configuration files |
| 255 | for the pkg-config utility. |
| 256 | </p> |
| 257 | |
| 258 | <p> |
| 259 | When compiling your OpenGL application you can use pkg-config to determine |
| 260 | the proper compiler and linker flags. |
| 261 | </p> |
| 262 | |
| 263 | <p> |
| 264 | For example, compiling and linking a GLUT application can be done with: |
| 265 | </p> |
| 266 | <pre> |
| 267 | gcc `pkg-config --cflags --libs glut` mydemo.c -o mydemo |
| 268 | </pre> |
| 269 | |
| 270 | <br> |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 271 | |
| 272 | <a name="windows"> |
| 273 | <H2>2. Windows Compilation and Installation</H1> |
| 274 | |
| 275 | <p> |
José Fonseca | ebe0796 | 2009-06-17 10:12:11 +0100 | [diff] [blame] | 276 | Please see the <a href="#scons">instructions on building with SCons</a>. |
| 277 | Alternatively see <a href="README.WIN32">README.WIN32</a> file. |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 278 | </p> |
| 279 | |
| 280 | |
| 281 | |
José Fonseca | ebe0796 | 2009-06-17 10:12:11 +0100 | [diff] [blame] | 282 | <a name="scons"> |
| 283 | <H2>3. Building with SCons</H1> |
| 284 | |
| 285 | <p> |
| 286 | To build Mesa with SCons on Linux or Windows do |
| 287 | </p> |
| 288 | <pre> |
| 289 | scons |
| 290 | </pre> |
| 291 | <p> |
| 292 | The build output will be placed in |
| 293 | build/<i>platform</i>-<i>machine</i>-<i>debug</i>/..., where <i>platform</i> is for |
| 294 | example linux or windows, <i>machine</i> is x86 or x86_64, optionally followed |
| 295 | by -debug for debug builds. |
| 296 | </p> |
| 297 | |
| 298 | <p> |
José Fonseca | ebe0796 | 2009-06-17 10:12:11 +0100 | [diff] [blame] | 299 | To build Mesa with SCons for Windows on Linux using the MinGW crosscompiler toolchain do |
| 300 | </p> |
| 301 | <pre> |
| 302 | scons platform=windows toolchain=crossmingw machine=x86 statetrackers=mesa drivers=softpipe,trace winsys=gdi |
José Fonseca | ebe0796 | 2009-06-17 10:12:11 +0100 | [diff] [blame] | 303 | </pre> |
| 304 | <p> |
| 305 | This will create: |
| 306 | </p> |
| 307 | <ul> |
José Fonseca | c4e0ae3 | 2010-03-10 12:09:16 +0000 | [diff] [blame] | 308 | <li>build/windows-x86-debug/gallium/targets/libgl-gdi/opengl32.dll — Mesa + Gallium + softpipe, binary compatible with Windows's opengl32.dll |
José Fonseca | ebe0796 | 2009-06-17 10:12:11 +0100 | [diff] [blame] | 309 | <li>build/windows-x86-debug/glut/glx/glut32.dll |
| 310 | <li>progs/build/windows-x86-debug/wgl/wglinfo.exe |
| 311 | <li>progs/build/windows-x86-debug/trivial/tri.exe |
| 312 | <li>and many other samples in progs/build/windows-x86-debug/... |
| 313 | </ul> |
| 314 | <p> |
| 315 | Put them all in the same directory to test them. |
| 316 | </p> |
| 317 | |
| 318 | |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 319 | <a name="other"> |
José Fonseca | ebe0796 | 2009-06-17 10:12:11 +0100 | [diff] [blame] | 320 | <H2>4. Other systems</H1> |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 321 | |
| 322 | <p> |
| 323 | Documentation for other environments (some may be very out of date): |
| 324 | </p> |
| 325 | |
| 326 | <UL> |
Brian Paul | 49a3fab | 2008-12-30 07:57:16 -0700 | [diff] [blame] | 327 | <li><A HREF="README.VMS">README.VMS</A> - VMS |
Brian Paul | 5f37abf | 2003-09-05 14:47:07 +0000 | [diff] [blame] | 328 | <LI><A HREF="README.GGI">README.GGI</A> - GGI |
| 329 | <LI><A HREF="README.3DFX">README.3DFX</A> - 3Dfx/Glide driver |
| 330 | <LI><A HREF="README.AMIWIN">README.AMIWIN</A> - Amiga Amiwin |
| 331 | <LI><A HREF="README.BEOS">README.BEOS</A> - BeOS |
| 332 | <LI><A HREF="README.D3D">README.D3D</A> - Direct3D driver |
| 333 | <LI><A HREF="README.DJ">README.DJ</A> - DJGPP |
| 334 | <LI><A HREF="README.LYNXOS">README.LYNXOS</A> - LynxOS |
| 335 | <LI><A HREF="README.MINGW32">README.MINGW32</A> - Mingw32 |
| 336 | <LI><A HREF="README.NeXT">README.NeXT</A> - NeXT |
| 337 | <LI><A HREF="README.OpenStep">README.OpenStep</A> - OpenStep |
| 338 | <LI><A HREF="README.OS2">README.OS2</A> - OS/2 |
| 339 | <LI><A HREF="README.WINDML">README.WINDML</A> - WindML |
| 340 | </UL> |
| 341 | |
| 342 | |
| 343 | |
| 344 | |
Brian Paul | 0b27ace | 2003-03-08 17:38:57 +0000 | [diff] [blame] | 345 | </body> |
| 346 | </html> |