summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/iris
diff options
context:
space:
mode:
authorBas Nieuwenhuizen <[email protected]>2019-07-26 13:49:59 +0200
committerBas Nieuwenhuizen <[email protected]>2019-08-07 15:34:46 +0200
commit5a26f528cb86697ff9f68998a0fe5c2f4ca75855 (patch)
tree8b72779d98573075d4e24f3a63231c60ee0bc5d6 /src/gallium/drivers/iris
parentda9e2958ec3d0cb7ff8aba5b2eb3d6be3cb53bb3 (diff)
meson,i965: Link with android deps when building for android.
The DBG marco in brw_blorp.c ends up calling an android log function: error: undefined reference to '__android_log_print' v2: On suggestion from Lionel, hang the Android dependency onto a new libintel_common dependency. Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/iris')
-rw-r--r--src/gallium/drivers/iris/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/iris/meson.build b/src/gallium/drivers/iris/meson.build
index 6b6263c3753..a953524a643 100644
--- a/src/gallium/drivers/iris/meson.build
+++ b/src/gallium/drivers/iris/meson.build
@@ -86,9 +86,9 @@ libiris = static_library(
],
c_args : [c_vis_args, c_sse2_args],
cpp_args : [cpp_vis_args, c_sse2_args],
- dependencies : [dep_libdrm, dep_valgrind, idep_genxml],
+ dependencies : [dep_libdrm, dep_valgrind, idep_genxml, idep_libintel_common],
link_with : [
- iris_gen_libs, libintel_common, libintel_compiler, libintel_dev, libisl,
+ iris_gen_libs, libintel_compiler, libintel_dev, libisl,
libblorp
],
)