Github user phrocker commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/418#discussion_r225749503
--- Diff: docker/Dockerfile ---
@@ -67,7 +67,7 @@ ENV MINIFI_HOME
$MINIFI_BASE_DIR/nifi-minifi-cpp-$MINIFI_VERSION
RUN cd $MINIFI_BASE_DIR \
&& mkdir build \
&& cd build \
- && cmake .. \
+ && cmake -DBUILD_SHARED_LIBS=OFF .. \
--- End diff --
Hmmm, that seems like something is hanging in the wrong place. I think
there is a bigger issue. It shouldn't be using those symbols. Is this a blocker
for you? Happy to merge if it fixes issue, but I am worried there is something
more nefarious at work.
---