diff options
author | Timur Kristóf <[email protected]> | 2019-09-27 09:26:40 +0200 |
---|---|---|
committer | Timur Kristóf <[email protected]> | 2019-10-10 09:57:52 +0200 |
commit | e96124bd658d172e07ef69f64acbc1472ba45a3d (patch) | |
tree | 5de5d56ad40b19e794d615876b66f9a20e76095e /src | |
parent | c57503b93286ad3e8715f6d42a05b6de5fd7fdac (diff) |
aco: Link ACO with amd/common.
We'd like to use some functions, for example some
ac_shader_util functions in ACO, so we need to link
ACO to AC.
Signed-off-by: Timur Kristóf <[email protected]>
Reviewed-by: Daniel Schürmann <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/compiler/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/amd/compiler/meson.build b/src/amd/compiler/meson.build index f4c8b57fc94..4b22b82eedd 100644 --- a/src/amd/compiler/meson.build +++ b/src/amd/compiler/meson.build @@ -87,6 +87,9 @@ _libaco = static_library( include_directories : [ inc_common, inc_compiler, inc_mesa, inc_mapi, inc_amd, inc_amd_common, inc_amd_common_llvm, ], + link_with : [ + libamd_common + ], dependencies : [ dep_llvm, dep_thread, dep_elf, dep_libdrm_amdgpu, dep_valgrind, idep_nir_headers, idep_amdgfxregs_h, |