From 2c7fcbd702dc2681fbcf5cde7ee1ee894ce3228f Mon Sep 17 00:00:00 2001 From: Lionel Ains Date: Wed, 5 Jun 2019 06:28:15 +0200 Subject: [PATCH] Fixing libserialcpp linker flag In order to work with LegrandGroup's fork of libserialcpp --- src/example/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/example/Makefile b/src/example/Makefile index 07df1ac3..bc3a548d 100644 --- a/src/example/Makefile +++ b/src/example/Makefile @@ -2,7 +2,7 @@ LOCAL_LDFLAGS ?= -L/home/seb/_DEV/serial/compiled/li LOCAL_INC ?= -I/home/seb/_DEV/serial/compiled/include CXXFLAGS = -DUSE_SERIALCPP -W -Wall -pedantic -std=c++11 -Wno-unused-parameter -g -Weffc++ -LDFLAGS = $(LOCAL_LDFLAGS) -lserial -lpthread +LDFLAGS = $(LOCAL_LDFLAGS) -lserialcpp -lpthread EXEC = mainEzspTest OBJECTFILES = mainEzspTest.o \