Remove remaining tabs from meson.build files

No changes, just tab-to-space replacement and a little bit of manual
twiddling.
This commit is contained in:
Peter Hutterer 2021-09-30 10:01:43 +10:00
parent fe79e684b7
commit abd5f9fbe8
7 changed files with 92 additions and 86 deletions

View file

@ -5,7 +5,7 @@ project('pipewire', ['c' ],
default_options : [ 'warning_level=3',
'c_std=gnu99',
'b_pie=true',
#'b_sanitize=address,undefined',
#'b_sanitize=address,undefined',
'buildtype=debugoptimized' ])
pipewire_version = meson.project_version()
@ -122,9 +122,9 @@ if host_machine.cpu_family() == 'aarch64'
int main () {
float *s;
asm volatile(
" ld1 { v0.4s }, [%[s]], #16\n"
" ld1 { v0.4s }, [%[s]], #16\n"
" fcvtzs v0.4s, v0.4s, #31\n"
: [s] "+r" (s) : :);
: [s] "+r" (s) : :);
}
''',
name : 'aarch64 Neon Support')
@ -140,7 +140,7 @@ elif cc.has_argument('-mfpu=neon')
asm volatile(
" vld1.32 { q0 }, [%[s]]!\n"
" vcvt.s32.f32 q0, q0, #31\n"
: [s] "+r" (s) : :);
: [s] "+r" (s) : :);
}
''',
args: '-mfpu=neon',