diff options
author | Eric Engestrom <[email protected]> | 2019-04-24 13:16:57 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2019-04-30 15:25:40 +0000 |
commit | 46d6883a13717b4d91e31f76176cb74f66691d1c (patch) | |
tree | 8a6616c3f99950ec5fb00facf5404afbef0f4f18 /docs/faq.html | |
parent | 1936bad9ec15883eefc327bdb56c2a795a0e918e (diff) |
docs: replace autotools intructions with meson equivalent
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'docs/faq.html')
-rw-r--r-- | docs/faq.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/faq.html b/docs/faq.html index 6270a071dac..3d73706a198 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -236,22 +236,22 @@ Basically you'll want the following: Mesa version number. </li></ul> <p> -When configuring Mesa, there are three autoconf options that affect the install +When configuring Mesa, there are three meson options that affect the install location that you should take care with: <code>--prefix</code>, -<code>--libdir</code>, and <code>--with-dri-driverdir</code>. To install Mesa +<code>--libdir</code>, and <code>-D dri-drivers-path</code>. To install Mesa into the system location where it will be available for all programs to use, set <code>--prefix=/usr</code>. Set <code>--libdir</code> to where your Linux distribution installs system libraries, usually either <code>/usr/lib</code> or -<code>/usr/lib64</code>. Set <code>--with-dri-driverdir</code> to the directory +<code>/usr/lib64</code>. Set <code>-D dri-drivers-path</code> to the directory where your Linux distribution installs DRI drivers. To find your system's DRI driver directory, try executing <code>find /usr -type d -name dri</code>. For example, if the <code>find</code> command listed <code>/usr/lib64/dri</code>, -then set <code>--with-dri-driverdir=/usr/lib64/dri</code>. +then set <code>-D dri-drivers-path=/usr/lib64/dri</code>. </p> <p> After determining the correct values for the install location, configure Mesa -with <code>./configure --prefix=/usr --libdir=xxx --with-dri-driverdir=xxx</code> -and then install with <code>sudo make install</code>. +with <code>meson configure --prefix=/usr --libdir=xxx -D dri-drivers-path=xxx</code> +and then install with <code>sudo ninja install</code>. </p> <br> <br> |