aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2018-04-28 01:44:39 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2018-04-28 01:44:39 +0200
commit2fea950644326983335622291855e6d6f9e919a3 (patch)
tree7fe23563bca84a392f785e780e40d288b1698f22
parentd0a97a5f73ad4941447a466872383240ce471933 (diff)
build: Fix OBS build for ARM
-rw-r--r--tests/Transceiver52M/Makefile.am5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/Transceiver52M/Makefile.am b/tests/Transceiver52M/Makefile.am
index 778d64d..06db5b0 100644
--- a/tests/Transceiver52M/Makefile.am
+++ b/tests/Transceiver52M/Makefile.am
@@ -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