diff options
author | Mauro Rossi <[email protected]> | 2019-12-08 09:40:36 +0100 |
---|---|---|
committer | Mauro Rossi <[email protected]> | 2019-12-27 09:20:49 +0100 |
commit | 962b70c25923e6f05884613faca406cafc7d8446 (patch) | |
tree | 7da23f9c1b267b10870e99c00cdfa9101a4c1fcf | |
parent | ad1c65e32299a540a66a72bb601c1170d9907bf7 (diff) |
android: radeonsi,ac: fix building error due to ac changes
Updates amd Makefile.sources and fixes the following building errors:
external/mesa/src/gallium/drivers/radeonsi/si_compute_prim_discard.c:338: error: undefined reference to 'ac_add_arg'
external/mesa/src/gallium/drivers/radeonsi/si_compute_prim_discard.c:340: error: undefined reference to 'ac_add_arg'
external/mesa/src/gallium/drivers/radeonsi/si_compute_prim_discard.c:341: error: undefined reference to 'ac_add_arg'
external/mesa/src/gallium/drivers/radeonsi/si_compute_prim_discard.c:342: error: undefined reference to 'ac_add_arg'
Fixes: 9885af3 ("ac: Add a shared interface between radv, radeonsi, LLVM and ACO")
Signed-off-by: Mauro Rossi <[email protected]>
Reviewed-by: Samuel Pitoiset <[email protected]>
-rw-r--r-- | src/amd/Makefile.sources | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/amd/Makefile.sources b/src/amd/Makefile.sources index fec7cb6463a..296df29c4b9 100644 --- a/src/amd/Makefile.sources +++ b/src/amd/Makefile.sources @@ -46,6 +46,8 @@ AMD_COMMON_FILES = \ common/ac_surface.h \ common/ac_rtld.c \ common/ac_rtld.h \ + common/ac_shader_args.c \ + common/ac_shader_args.h \ common/ac_shader_util.c \ common/ac_shader_util.h |