mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 10:50:16 +01:00
nouveau: add idep_nir_headers as dep for libnouveau
Fixes a compilation error when building libnouveau:
In file included from ../src/gallium/drivers/nouveau/nv50/nv50_program.c:25:
../src/compiler/nir/nir.h:1115:10: fatal error: nir_intrinsics.h: No such file or directory
#include "nir_intrinsics.h"
^~~~~~~~~~~~~~~~~~
compilation terminated.
Fixes: f014ae3c7c ("nouveau: add support for nir")
Signed-off-by: Stephen Barber <smbarber@chromium.org>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Karol Herbst <kherbst@redhat.com>
(cherry picked from commit 8c3ace6991)
This commit is contained in:
parent
895f0a2ca2
commit
d34ae3876a
1 changed files with 2 additions and 2 deletions
|
|
@ -211,13 +211,13 @@ files_libnouveau = files(
|
|||
|
||||
libnouveau = static_library(
|
||||
'nouveau',
|
||||
[files_libnouveau, nir_opcodes_h],
|
||||
files_libnouveau,
|
||||
include_directories : [
|
||||
inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_common,
|
||||
],
|
||||
c_args : [c_vis_args],
|
||||
cpp_args : [cpp_vis_args],
|
||||
dependencies : [dep_libdrm, dep_libdrm_nouveau],
|
||||
dependencies : [dep_libdrm, dep_libdrm_nouveau, idep_nir_headers],
|
||||
)
|
||||
|
||||
nouveau_compiler = executable(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue