[
https://issues.apache.org/jira/browse/MINIFI-6?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15267048#comment-15267048
]
ASF GitHub Bot commented on MINIFI-6:
-------------------------------------
Github user apiri commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/1#discussion_r61772403
--- Diff: Makefile ---
@@ -0,0 +1,40 @@
+CC=g++
+AR=ar
+TARGET_DIR= ./build
+TARGET_LIB=libminifi.a
+TARGET_EXE=minifi
+CFLAGS=-O0 -fexceptions -fpermissive -Wno-write-strings -std=c++11 -fPIC
-Wall -g -Wno-unused-private-field
+INCLUDES=-I./inc -I./src -I./test -I/usr/include/libxml2
-I/usr/local/opt/leveldb/include/
+LDDIRECTORY=-L/usr/local/opt/leveldb/out-static/ -L./build
--- End diff --
@benqiu2016 This out-static directory seems to be problematic on OS X. Is
additional setup needed beyond brew install leveldb.
> Basic C++ native MiniFi implementation
> --------------------------------------
>
> Key: MINIFI-6
> URL: https://issues.apache.org/jira/browse/MINIFI-6
> Project: Apache NiFi MiNiFi
> Issue Type: New Feature
> Components: Core Framework
> Affects Versions: 0.1.0
> Environment: C++
> Linux
> Reporter: bqiu
> Labels: native
> Fix For: 0.1.0
>
>
> A Basic C++ isolated native MiNiFi implementation (not communicated to the
> master NiFI yet).
> 1) Identify the all necessary software frameworks for C++ MiNiFi
> implementation like database, xml parser, logging, etc.
> 2) Flow configuration from flow.xml
> 3) Processor init/enable/disable/running
> 4) Processor Scheduling
> 5) Processor Relationship/Connections
> 6) Flow record creation/clone/transfer between Processor
> 7) Flow record persistent
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)