Clone of mesa.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

install.html 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  1. <HTML>
  2. <TITLE>Compilation and Installation</TITLE>
  3. <link rel="stylesheet" type="text/css" href="mesa.css"></head>
  4. <BODY>
  5. <H1>Compilation and Installation</H1>
  6. <ol>
  7. <li><a href="#unix-x11">Unix / X11</a>
  8. <li><a href="#windows">Windows</a>
  9. <li><a href="#vms">VMS</a>
  10. <li><a href="#other">Other</a>
  11. </ol>
  12. <a name="unix-x11">
  13. <H2>1. Unix/X11 Compilation and Installation</H1>
  14. <h3>1.1 Compilation</h3>
  15. <p>
  16. Mesa may be compiled in several different ways:
  17. </p>
  18. <ul>
  19. <li><b><em>Stand-alone/Xlib mode</em></b> - Mesa will be compiled as
  20. a software renderer using Xlib to do all rendering.
  21. The libGL.so library will be a self-contained rendering library that will
  22. allow you to run OpenGL/GLX applications on any X server (regardless of
  23. whether it supports the GLX X server extension).
  24. You will <em>not</em> be able to use hardware 3D acceleration.
  25. <p>
  26. To compile stand-alone Mesa type <b>make</b> in the top-level directory.
  27. You'll see a list of supported system configurations.
  28. Choose one from the list (such as linux-x86), and type:
  29. </p>
  30. <pre>
  31. make linux-x86
  32. </pre>
  33. <p>This will produce libGL.so and several other libraries</p>
  34. </li>
  35. <li><b><em>DRI/accelerated</em></b> - The DRI hardware drivers for
  36. accelerated OpenGL rendering (for ATI, Intel, Matrox, etc) will be built.
  37. The libGL.so library will support the GLX extension and will load/use
  38. the DRI hardware drivers.
  39. <p>
  40. <b>Prerequisites:</b>
  41. </p>
  42. <ol>
  43. <li>
  44. <p>
  45. For Mesa 7.0.2 <a href="http://dri.freedesktop.org/libdrm/">
  46. DRM version 2.3</a> is required.
  47. </p>
  48. <p>
  49. To check if you already have it, run:
  50. <br>
  51. <code>pkg-config --modversion libdrm</code>
  52. </p>
  53. <p>
  54. You can download and install a <a href="http://dri.freedesktop.org/libdrm/">
  55. tarball release</a> or get the code from git with:
  56. <br>
  57. <code>git clone git://anongit.freedesktop.org/git/mesa/drm</code>
  58. <br>
  59. Then revert to the drm-2.3.0 tag with:
  60. <br>
  61. <code>git-reset --hard drm-2.3.0</code>
  62. </p>
  63. </li>
  64. <li>
  65. Relatively recent
  66. <a href="http://freedesktop.org/wiki/Software_2fXserver" target="_parent">
  67. X.org</a> release.
  68. Mesa depends on a number of X header and library files.
  69. </li>
  70. </ol>
  71. <p>
  72. Build Mesa and the DRI hardware drivers by running
  73. </p>
  74. <pre>
  75. make linux-dri
  76. </pre>
  77. <p>
  78. There are also <code>linux-dri-x86</code>, <code>linux-dri-x86-64</code>,
  79. and <code>linux-ppc</code> configurations which are optimized for those
  80. architectures.
  81. </p>
  82. </li>
  83. </ul>
  84. <p>
  85. Later, if you want to rebuild for a different configuration run
  86. <code>make realclean</code> before rebuilding.
  87. </p>
  88. <h3>1.2 The libraries</h3>
  89. <p>
  90. When compilation has finished, look in the top-level <code>lib/</code>
  91. (or <code>lib64/</code>) directory.
  92. You'll see a set of library files similar to this:
  93. </p>
  94. <pre>
  95. lrwxrwxrwx 1 brian users 10 Mar 26 07:53 libGL.so -> libGL.so.1*
  96. lrwxrwxrwx 1 brian users 19 Mar 26 07:53 libGL.so.1 -> libGL.so.1.5.060100*
  97. -rwxr-xr-x 1 brian users 3375861 Mar 26 07:53 libGL.so.1.5.060100*
  98. lrwxrwxrwx 1 brian users 11 Mar 26 07:53 libGLU.so -> libGLU.so.1*
  99. lrwxrwxrwx 1 brian users 20 Mar 26 07:53 libGLU.so.1 -> libGLU.so.1.3.060100*
  100. -rwxr-xr-x 1 brian users 549269 Mar 26 07:53 libGLU.so.1.3.060100*
  101. lrwxrwxrwx 1 brian users 12 Mar 26 07:53 libglut.so -> libglut.so.3*
  102. lrwxrwxrwx 1 brian users 16 Mar 26 07:53 libglut.so.3 -> libglut.so.3.7.1*
  103. -rwxr-xr-x 1 brian users 597754 Mar 26 07:53 libglut.so.3.7.1*
  104. lrwxrwxrwx 1 brian users 11 Mar 26 08:04 libGLw.so -> libGLw.so.1*
  105. lrwxrwxrwx 1 brian users 15 Mar 26 08:04 libGLw.so.1 -> libGLw.so.1.0.0*
  106. -rwxr-xr-x 1 brian users 20750 Mar 26 08:04 libGLw.so.1.0.0*
  107. lrwxrwxrwx 1 brian users 14 Mar 26 07:53 libOSMesa.so -> libOSMesa.so.6*
  108. lrwxrwxrwx 1 brian users 23 Mar 26 07:53 libOSMesa.so.6 -> libOSMesa.so.6.1.060100*
  109. -rwxr-xr-x 1 brian users 23871 Mar 26 07:53 libOSMesa.so.6.1.060100*
  110. </pre>
  111. <p>
  112. <b>libGL</b> is the main OpenGL library (i.e. Mesa).
  113. <br>
  114. <b>libGLU</b> is the OpenGL Utility library.
  115. <br>
  116. <b>libglut</b> is the GLUT library.
  117. <br>
  118. <b>libGLw</b> is the Xt/Motif OpenGL drawing area widget library.
  119. <br>
  120. <b>libOSMesa</b> is the OSMesa (Off-Screen) interface library.
  121. </p>
  122. <p>
  123. If you built the DRI hardware drivers, you'll also see the DRI drivers:
  124. </p>
  125. <pre>
  126. -rwxr-xr-x 1 brian users 15607851 Jul 21 12:11 ffb_dri.so*
  127. -rwxr-xr-x 1 brian users 15148747 Jul 21 12:11 i810_dri.so*
  128. -rwxr-xr-x 1 brian users 14497814 Jul 21 12:11 i830_dri.so*
  129. -rwxr-xr-x 1 brian users 16895413 Jul 21 12:11 i915_dri.so*
  130. -rwxr-xr-x 1 brian users 11320803 Jul 21 12:11 mach64_dri.so
  131. -rwxr-xr-x 1 brian users 11418014 Jul 21 12:12 mga_dri.so
  132. -rwxr-xr-x 1 brian users 11064426 Jul 21 12:12 r128_dri.so
  133. -rwxr-xr-x 1 brian users 11849858 Jul 21 12:12 r200_dri.so
  134. -rwxr-xr-x 1 brian users 16050488 Jul 21 12:11 r300_dri.so*
  135. -rwxr-xr-x 1 brian users 11757388 Jul 21 12:12 radeon_dri.so
  136. -rwxr-xr-x 1 brian users 11232304 Jul 21 12:13 s3v_dri.so
  137. -rwxr-xr-x 1 brian users 11062970 Jul 21 12:13 savage_dri.so
  138. -rwxr-xr-x 1 brian users 11214212 Jul 21 12:13 sis_dri.so
  139. -rwxr-xr-x 1 brian users 11368736 Jul 21 12:13 tdfx_dri.so
  140. -rwxr-xr-x 1 brian users 10598868 Jul 21 12:13 trident_dri.so
  141. -rwxr-xr-x 1 brian users 10997120 Jul 21 12:13 unichrome_dri.so
  142. </pre>
  143. <h3>1.3 Running the demos</h3>
  144. <p>
  145. If you downloaded/unpacked the MesaDemos-x.y.z.tar.gz archive or
  146. obtained Mesa from CVS, the <b>progs/</b> directory will contain a
  147. bunch of demonstration programs.
  148. </p>
  149. <p>
  150. Before running a demo, you may have to set an environment variable
  151. (such as <b>LD_LIBRARY_PATH</b> on Linux) to indicate where the
  152. libraries are located. For example:
  153. <p>
  154. <blockquote>
  155. <b>cd</b> into the Mesa <b>lib/</b> directory.
  156. <br>
  157. <b>setenv LD_LIBRARY_PATH ${cwd}</b> (if using csh or tcsh shell)
  158. <br>
  159. or,
  160. <br>
  161. <b>export LD_LIBRARY_PATH=${PWD}</b> (if using bash or sh shell)
  162. </blockquote>
  163. <p>
  164. Next, change to the Mesa/demos/ directory:
  165. </p>
  166. <blockquote>
  167. <b>cd ../progs/demos</b>
  168. </blockquote>
  169. <p>
  170. Run a demo such as gears:
  171. </p>
  172. <blockquote>
  173. <b>./gears</b>
  174. </blockquote>
  175. <p>
  176. If this doesn't work, try the <b>Mesa/progs/xdemos/glxinfo</b> program
  177. and see that it prints the expected Mesa version number.
  178. </p>
  179. <p>
  180. If you're using Linux or a similar OS, verify that the demo program is
  181. being linked with the proper library files:
  182. </p>
  183. <blockquote>
  184. <b>ldd gears</b>
  185. </blockquote>
  186. <p>
  187. You should see something like this:
  188. </p>
  189. <pre>
  190. libglut.so.3 => /home/brian/Mesa/lib/libglut.so.3 (0x40013000)
  191. libGLU.so.1 => /home/brian/Mesa/lib/libGLU.so.1 (0x40051000)
  192. libGL.so.1 => /home/brian/Mesa/lib/libGL.so.1 (0x400e0000)
  193. libc.so.6 => /lib/i686/libc.so.6 (0x42000000)
  194. libm.so.6 => /lib/i686/libm.so.6 (0x403da000)
  195. libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x403fc000)
  196. libXmu.so.6 => /usr/X11R6/lib/libXmu.so.6 (0x404da000)
  197. libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x404f1000)
  198. libXi.so.6 => /usr/X11R6/lib/libXi.so.6 (0x40543000)
  199. libstdc++.so.5 => /usr/lib/libstdc++.so.5 (0x4054b000)
  200. libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x405fd000)
  201. libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x40605000)
  202. libpthread.so.0 => /lib/i686/libpthread.so.0 (0x40613000)
  203. /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
  204. libdl.so.2 => /lib/libdl.so.2 (0x40644000)
  205. libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x40647000)
  206. libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x40650000)
  207. </pre>
  208. <p>
  209. Retrace your steps if this doesn't look right.
  210. </p>
  211. <H3>1.4 Installing the header and library files</H3>
  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. <p>
  221. If you'd like Mesa to co-exist with another implementation of OpenGL that's
  222. already installed, you'll have to choose different directories, like
  223. <code>/usr/local/include/GL/</code> and <code>/usr/local/lib/</code>.
  224. </p>
  225. <p>
  226. To install Mesa's headers and libraries, run <code>make install</code>.
  227. But first, check the Mesa/configs/default file and examine the values
  228. of the <b>INSTALL_DIR</b> and <b>DRI_DRIVER_INSTALL_DIR</b> variables.
  229. Change them if needed, then run <code>make install</code>.
  230. </p>
  231. <p>
  232. The variable
  233. <b>DESTDIR</b> may also be used to install the contents to a temporary
  234. staging directory.
  235. This can be useful for package management.
  236. For example: <code>make install DESTDIR=/somepath/</code>
  237. </p>
  238. <p>
  239. Note: at runtime you can use the LD_LIBRARY_PATH environment variable
  240. (on Linux at least) to switch
  241. between the Mesa libraries and other vendor's libraries whenever you want.
  242. This is a handy way to compare multiple OpenGL implementations.
  243. </p>
  244. <H3>1.5 pkg-config support</H3>
  245. <p>
  246. Running <code>make install</code> will install package configuration files
  247. for the pkg-config utility.
  248. </p>
  249. <p>
  250. When compiling your OpenGL application you can use pkg-config to determine
  251. the proper compiler and linker flags.
  252. </p>
  253. <p>
  254. For example, compiling and linking a GLUT application can be done with:
  255. </p>
  256. <pre>
  257. gcc `pkg-config --cflags --libs glut` mydemo.c -o mydemo
  258. </pre>
  259. <br>
  260. <a name="windows">
  261. <H2>2. Windows Compilation and Installation</H1>
  262. <p>
  263. Please see the <a href="README.WIN32">README.WIN32</a> file.
  264. </p>
  265. <a name="vms">
  266. <H2>3. VMS Compilation and Installation</H1>
  267. <p>
  268. Please see the <a href="README.VMS">README.VMS</a> file.
  269. </p>
  270. <a name="other">
  271. <H2>4. Other systems</H1>
  272. <p>
  273. Documentation for other environments (some may be very out of date):
  274. </p>
  275. <UL>
  276. <LI><A HREF="README.GGI">README.GGI</A> - GGI
  277. <LI><A HREF="README.3DFX">README.3DFX</A> - 3Dfx/Glide driver
  278. <LI><A HREF="README.AMIWIN">README.AMIWIN</A> - Amiga Amiwin
  279. <LI><A HREF="README.BEOS">README.BEOS</A> - BeOS
  280. <LI><A HREF="README.D3D">README.D3D</A> - Direct3D driver
  281. <LI><A HREF="README.DJ">README.DJ</A> - DJGPP
  282. <LI><A HREF="README.LYNXOS">README.LYNXOS</A> - LynxOS
  283. <LI><A HREF="README.MINGW32">README.MINGW32</A> - Mingw32
  284. <LI><A HREF="README.NeXT">README.NeXT</A> - NeXT
  285. <LI><A HREF="README.OpenStep">README.OpenStep</A> - OpenStep
  286. <LI><A HREF="README.OS2">README.OS2</A> - OS/2
  287. <LI><A HREF="README.WINDML">README.WINDML</A> - WindML
  288. </UL>
  289. </body>
  290. </html>