Skip to content
Snippets Groups Projects
Commit fda6f863 authored by Eric Engestrom's avatar Eric Engestrom :no_entry: Committed by Marge Bot
Browse files

vc4: Add missing libvc4_neon build dependencies


Duplicates the libvc4 dependencies.

Fixes: ebcb4c21 ("meson: Enable VC4's NEON assembly support.")
Reviewed-by: default avatarJuan A. Suarez <jasuarez@igalia.com>
Co-authored-by: David Heidelberg's avatarDavid Heidelberg <david@ixit.cz>
Part-of: <mesa/mesa!30819>
parent 9bfb23b2
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,11 @@ files_libvc4 = files(
vc4_c_args = []
vc4_deps = [
dep_simpenrose, dep_libdrm, dep_valgrind,
idep_nir_headers, idep_mesautil,
]
libvc4_neon = []
if host_machine.cpu_family() == 'arm'
libvc4_neon = static_library(
......@@ -75,6 +80,7 @@ if host_machine.cpu_family() == 'arm'
inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom
],
c_args : '-mfpu=neon',
dependencies : vc4_deps,
)
vc4_c_args += '-DUSE_ARM_ASM'
endif
......@@ -93,10 +99,7 @@ libvc4 = static_library(
link_with: libvc4_neon,
c_args : [vc4_c_args],
gnu_symbol_visibility : 'hidden',
dependencies : [
dep_simpenrose, dep_libdrm, dep_valgrind,
idep_nir_headers, idep_mesautil,
],
dependencies : vc4_deps,
build_by_default : false,
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment