diff options
author | Dylan Baker <[email protected]> | 2017-09-20 11:53:29 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2017-09-27 09:12:34 -0700 |
commit | 673dda8330769309a319d3e7f24a029cd72a1caf (patch) | |
tree | e6418ab1566d57904f24b5e85fc03f47497aaf91 /src/meson.build | |
parent | d1992255bb29054fa51763376d125183a9f602f3 (diff) |
meson: build "radv" vulkan driver for radeon hardware
This builds, installs, and has been tested on a r290x (Hawaii) with the Vulkan
CTS. It dies horribly in a fire at the same point for the meson build as the
autotools build.
v2: - enable radv by default
- add shader cache support and enforce that it's built for radv
v3: - Fix typo in meson_options (Nicholas)
- strip trailing 'svn' from llvm version before setting the version
preprocessor flag (Bas)
- Check for LLVM module requirements
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/meson.build')
-rw-r--r-- | src/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build index 4c82eec70f1..76ff497e565 100644 --- a/src/meson.build +++ b/src/meson.build @@ -37,7 +37,7 @@ subdir('util') subdir('compiler') subdir('egl/wayland/wayland-drm') subdir('vulkan') -# TODO: amd +subdir('amd') subdir('intel') # TODO: vc4 # TODO: opengl_common |