meson: Add build Intel "anv" vulkan driver
authorDylan Baker <dylan@pnwbakers.com>
Fri, 15 Sep 2017 00:57:17 +0000 (17:57 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Wed, 27 Sep 2017 16:12:19 +0000 (09:12 -0700)
commitd1992255bb29054fa51763376d125183a9f602f3
tree4a132f8e640661d4933c6ddb010185c870ef99d0
parentc8b9cf429f9b2ce1cd17759eecbdbb0482ab271c
meson: Add build Intel "anv" vulkan driver

This allows building and installing the Intel "anv" Vulkan driver using
meson and ninja, the driver has been tested against the CTS and has
seems to pass the same series of tests (they both segfault when the CTS
tries to run wayland wsi tests).

There are still a mess of TODO, XXX, and FIXME comments in here. Those
are mostly for meson bugs I'm trying to fix, or for additional things to
implement for other drivers/features.

I have configured all intermediate libraries and optional tools to not
build by default, meaning they will only be built if they're pulled in
as a dependency of a target that will actually be installed) this allows
us to avoid massive if chains, while ensuring that only the bits that
need to be built are.

v2: - enable anv, x11, and wayland by default
    - add configure option to disable valgrind
v3: - fix typo in meson_options (Nicholas)
v4: - Remove dead code (Eric)
    - Remove change to generator that was from v0 (Eric)
    - replace if chain with loop (Eric)
    - Fix typos (Eric)
    - define HAVE_DLOPEN for both libdl and builtin dl cases (Eric)
v5: - rebase on util string buffer implementation

Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net> (v4)
24 files changed:
include/meson.build [new file with mode: 0644]
meson.build [new file with mode: 0644]
meson_options.txt [new file with mode: 0644]
src/compiler/glsl/meson.build [new file with mode: 0644]
src/compiler/meson.build [new file with mode: 0644]
src/compiler/nir/meson.build [new file with mode: 0644]
src/egl/wayland/wayland-drm/meson.build [new file with mode: 0644]
src/gtest/meson.build [new file with mode: 0644]
src/intel/blorp/meson.build [new file with mode: 0644]
src/intel/common/meson.build [new file with mode: 0644]
src/intel/compiler/meson.build [new file with mode: 0644]
src/intel/genxml/meson.build [new file with mode: 0644]
src/intel/isl/meson.build [new file with mode: 0644]
src/intel/meson.build [new file with mode: 0644]
src/intel/tools/meson.build [new file with mode: 0644]
src/intel/vulkan/meson.build [new file with mode: 0644]
src/mapi/glapi/gen/meson.build [new file with mode: 0644]
src/meson.build [new file with mode: 0644]
src/util/meson.build [new file with mode: 0644]
src/util/tests/hash_table/meson.build [new file with mode: 0644]
src/util/tests/string_buffer/meson.build [new file with mode: 0644]
src/vulkan/meson.build [new file with mode: 0644]
src/vulkan/util/meson.build [new file with mode: 0644]
src/vulkan/wsi/meson.build [new file with mode: 0644]