Fix in makefile for OSX

This commit is contained in:
2018-02-13 14:41:07 +01:00
parent 414c5da3da
commit 36592a2a63
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -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)
-1
View File
@@ -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