Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | meson: Use dependencies for nir | Dylan Baker | 2018-01-11 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | | | This creates two new internal dependencies, idep_nir_headers and idep_nir. The former encapsulates the generation of nir_opcodes.h and nir_builder_opcodes.h and adding src/compiler/nir as an include path. This ensures that any target that needs nir headers will have the includes and that the generated headers will be generated before the target is build. The second, idep_nir, includes the first and additionally links to libnir. This is intended to make it easier to avoid race conditions in the build when using nir, since the number of consumers for libnir and it's headers are quite high. Acked-by: Eric Engestrom <[email protected]> Signed-off-by: Dylan Baker <[email protected]> | ||||
* | meson: define driver dependencies | Dylan Baker | 2017-12-04 | 1 | -0/+5 |
| | | | | | | | | | | | | This allow us to encapsulate the compiler and linkage requirements of each driver in a reusable way. The result will be that each target that needs a specific driver can simply add `driver_<name>` to its dependencies line and the necessary libraries and compiler args will be added. This will allow for a lot of code de-duplication between gallium targets. Signed-off-by: Dylan Baker <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> | ||||
* | meson: Enable VC4's NEON assembly support. | Eric Anholt | 2017-11-09 | 1 | -0/+13 |
| | | | | | | Reviewed-by: Dylan Baker <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> Tested-by: Timothy Arceri <[email protected]> | ||||
* | meson: Add support for the vc4 driver. | Eric Anholt | 2017-10-17 | 1 | -0/+101 |
Reviewed-by: Dylan Baker <[email protected]> |