From 65fadbeea32068908103f77122ffb0355c6fcdee Mon Sep 17 00:00:00 2001 From: Al Date: Wed, 29 Mar 2017 21:38:54 -0400 Subject: [PATCH] [fix] add CBLAS_LIBS in the test Makefile --- test/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile.am b/test/Makefile.am index aa0b4632..1a89e560 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -10,5 +10,5 @@ CFLAGS = $(CFLAGS_BASE) TESTS = test_libpostal noinst_PROGRAMS = test_libpostal test_libpostal_SOURCES = test.c test_expand.c test_parser.c test_transliterate.c test_numex.c test_trie.c test_string_utils.c test_crf_context.c -test_libpostal_LDADD = ../src/libpostal.la +test_libpostal_LDADD = ../src/libpostal.la $(CBLAS_LIBS) test_libpostal_CFLAGS = $(CFLAGS_O3)