diff options
author | Vinson Lee <[email protected]> | 2018-05-17 22:39:50 +0000 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-05-21 11:15:47 -0700 |
commit | 85f61197df49c3384f9f6c8cf0e642249e42e8fd (patch) | |
tree | 354c0fac8e3a32b457daa08b884627c7d171654b /src | |
parent | 73df16dcee79e2281c8d8a830dbbe6655359c82d (diff) |
v3d: Include v3d_drm.h path.
Fix build error.
CC v3d_blit.lo
In file included from v3d_blit.c:27:0:
v3d_context.h:39:10: fatal error: v3d_drm.h: No such file or directory
#include "v3d_drm.h"
^~~~~~~~~~~
Fixes: 8a793d42f1cc ("v3d: Switch the vc5 driver to using the finalized V3D UABI.")
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/v3d/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/v3d/Makefile.am b/src/gallium/drivers/v3d/Makefile.am index 2b4c364c24e..ff0334a2396 100644 --- a/src/gallium/drivers/v3d/Makefile.am +++ b/src/gallium/drivers/v3d/Makefile.am @@ -24,6 +24,7 @@ include $(top_srcdir)/src/gallium/Automake.inc AM_CFLAGS = \ -I$(top_builddir)/src/compiler/nir \ + -I$(top_srcdir)/include/drm-uapi \ -I$(top_builddir)/src/broadcom \ $(LIBDRM_CFLAGS) \ $(V3D_SIMULATOR_CFLAGS) \ |