memgraph/query_engine/compile.sh

9 lines
375 B
Bash
Executable File

#!/bin/bash
# TODO: create Makefile or cmake script
cd compiled/cpu
clang++ -std=c++1y create_return.cpp -o create_return.so -I../../../ -shared -fPIC
cd ../..
# clang++ -std=c++1y -g -I../ -I ../lib/yaml-cpp/include main.cpp ../cypher/cypher.cpp -o engine -L ../lib/yaml-cpp/build -l yaml-cpp -l dl
clang++ -std=c++1y -g -I../ main.cpp ../cypher/cypher.cpp -o engine -l dl