vc4: Enable NEON asm on meson cross-builds.
authorEric Anholt <eric@anholt.net>
Mon, 28 Jan 2019 19:39:12 +0000 (11:39 -0800)
committerEric Anholt <eric@anholt.net>
Tue, 29 Jan 2019 00:45:48 +0000 (16:45 -0800)
The core Mesa with_asm_arch and USE_ARM_ASM flags are disabled for meson
cross-builds because of the need to run host binaries on the build system.
vc4 doesn't need to do that, so skip with_asm_arch to enable NEON on my
cross-builds.

Fixes: ebcb4c2156e9 ("meson: Enable VC4's NEON assembly support.")
src/gallium/drivers/vc4/meson.build

index 50adcc25f25f6a5d6a2e32797db9bf5bac4b9db0..0d7a03cd242b6931220471bc3aaecd12a354aab6 100644 (file)
@@ -81,8 +81,10 @@ files_libvc4 = files(
   'vc4_uniforms.c',
 )
 
+vc4_c_args = []
+
 libvc4_neon = []
-if with_asm_arch == 'arm'
+if host_machine.cpu_family() == 'arm'
   libvc4_neon = static_library(
     'vc4_neon',
     'vc4_tiling_lt_neon.c',
@@ -91,12 +93,12 @@ if with_asm_arch == 'arm'
     ],
     c_args : '-mfpu=neon',
   )
+  vc4_c_args += '-DUSE_ARM_ASM'
 endif
 
-simpenrose_c_args = []
 dep_simpenrose = dependency('simpenrose', required : false)
 if dep_simpenrose.found()
-  simpenrose_c_args = '-DUSE_VC4_SIMULATOR'
+  vc4_c_args += '-DUSE_VC4_SIMULATOR'
 endif
 
 libvc4 = static_library(
@@ -107,7 +109,7 @@ libvc4 = static_library(
     inc_gallium_drivers, inc_drm_uapi,
   ],
   link_with: libvc4_neon,
-  c_args : [c_vis_args, simpenrose_c_args],
+  c_args : [c_vis_args, vc4_c_args],
   cpp_args : [cpp_vis_args],
   dependencies : [dep_simpenrose, dep_libdrm, dep_valgrind, idep_nir_headers],
   build_by_default : false,