From 67754ad3bc3abf412cea2219fa3596fa3fa6d739 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Mon, 18 Jul 2022 13:00:12 +0200 Subject: [PATCH] meson: remove sse_args from plain c build --- spa/plugins/audioconvert/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/audioconvert/meson.build b/spa/plugins/audioconvert/meson.build index 160561d9c..d84699242 100644 --- a/spa/plugins/audioconvert/meson.build +++ b/spa/plugins/audioconvert/meson.build @@ -15,7 +15,7 @@ audioconvert_c = static_library('audioconvert_c', 'resample-native-c.c', 'resample-peaks-c.c', 'fmt-ops-c.c' ], - c_args : [sse_args, '-Ofast', '-ffast-math'], + c_args : ['-Ofast', '-ffast-math'], dependencies : [ spa_dep ], install : false )