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/llvmpipe.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/llvmpipe.html')
-rw-r--r-- | docs/llvmpipe.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/llvmpipe.html b/docs/llvmpipe.html index 28c0c2b0015..aea5100cc13 100644 --- a/docs/llvmpipe.html +++ b/docs/llvmpipe.html @@ -120,10 +120,12 @@ To build everything on Linux invoke scons as: scons build=debug libgl-xlib </pre> -Alternatively, you can build it with autoconf/make with: +Alternatively, you can build it with meson with: <pre> - ./configure --enable-glx=gallium-xlib --with-gallium-drivers=swrast --disable-dri --disable-gbm --disable-egl - make + mkdir build + cd build + meson -D glx=gallium-xlib -D gallium-drivers=swrast + ninja </pre> but the rest of these instructions assume that scons is used. |