We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmake .. -DBUILD_ARROW_FROM_SOURCE=ON -DGRAPHAR_BUILD_STATIC=ON make -j && sudo make install
show.cc
#include "graphar/graph_info.h" #include "iostream" int main() { std::string path = "/workspaces/incubator-graphar/testing/neo4j/MovieGraph.graph.yml"; auto graph_info = graphar::GraphInfo::Load(path); std::cout << graph_info.value()->Dump().value() << std::endl; }
cmake_minimum_required(VERSION 3.15) project(import) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++17 -Wall") set(TARGET show) find_package(OpenSSL REQUIRED) find_package(graphar REQUIRED) add_executable(${TARGET} show.cc) target_link_libraries(${TARGET} PRIVATE graphar)
cmake . & make
got link error: /usr/bin/ld: can not find -lgar_arrow_static: No such file or directory
/usr/bin/ld: can not find -lgar_arrow_static: No such file or directory
C++
The text was updated successfully, but these errors were encountered:
acezen
No branches or pull requests
Describe the bug, including details regarding any error messages, version, and platform.
build graphar with arrow from source
cmake .. -DBUILD_ARROW_FROM_SOURCE=ON -DGRAPHAR_BUILD_STATIC=ON make -j && sudo make install
write a
show.cc
and link grapharbuild
got link error:
/usr/bin/ld: can not find -lgar_arrow_static: No such file or directory
Component(s)
C++
The text was updated successfully, but these errors were encountered: