From 36592a2a63a02ad9b0fac2907dee3ad492fd6e7a Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Tue, 13 Feb 2018 14:41:07 +0100 Subject: [PATCH] Fix in makefile for OSX --- Makefile | 2 +- README.md | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 8246da7..18e99a7 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ MKDIR = mkdir -p CPP = g++ CPPFLAGS = -Wall -fPIC -pthread -std=c++1y -I./include -I${CONDA_PREFIX}/include LDLIBS = -L/usr/lib64 -L${CONDA_PREFIX}/lib -lzmq -lhdf5 -lhdf5_hl -lhdf5_cpp -lhdf5_hl_cpp -lboost_system -lboost_regex -lboost_thread -lpthread -LDFLAGS = -shared -Wl,-soname,libcpp_h5_writer.so +LDFLAGS = -shared -Wl,-install_name,libcpp_h5_writer.so HEADERS = $(wildcard $(SRC_DIR)/*.hpp) SRCS = $(wildcard $(SRC_DIR)/*.cpp) diff --git a/README.md b/README.md index 4faf314..96f1241 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,6 @@ To create your own stream writer you need to specify: - The mapping between the stream header metadata and your H5 file format. - Additional metadata that is transfer in the stream message header. - For example, lets see the SF file format. You will need to extend the abstract class H5Format. Lets save this file into **SfFormat.cpp**. ```cpp