build: Fix OBS build for ARM

Change-Id: Ic6b408d684e2bb58af71ec04ced7e73e0d38ffcd
This commit is contained in:
Pau Espin 2018-04-28 01:44:39 +02:00
parent d0a97a5f73
commit 2fea950644
1 changed files with 3 additions and 2 deletions

View File

@ -8,10 +8,11 @@ noinst_PROGRAMS = \
convolve_test
convolve_test_SOURCES = convolve_test.c
convolve_test_CFLAGS = $(AM_CFLAGS)
convolve_test_LDADD = $(COMMON_LA) $(ARCH_LA)
if HAVE_SSE3
convolve_test_CFLAGS = $(AM_CFLAGS) $(SIMD_FLAGS)
convolve_test_CFLAGS += $(SIMD_FLAGS)
endif
if HAVE_SSE4_1
convolve_test_CFLAGS = $(AM_CFLAGS) $(SIMD_FLAGS)
convolve_test_CFLAGS += $(SIMD_FLAGS)
endif