From 7aa550d7bef2c6497f444cec1e1b680e4294bb58 Mon Sep 17 00:00:00 2001 From: Kunlin Yu Date: Sat, 4 Jan 2025 10:26:53 +0800 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d5acf22..dab090c 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ As of the end of 2024, only a limited number of syntax features have been develo # Dependencies 1. flex: lexer -2. bison++: parser +2. bison: parser 3. gflags: for cli tool 4. glog: for logging 5. geos: for geometry and spatial predicate and geojson @@ -21,7 +21,7 @@ As of the end of 2024, only a limited number of syntax features have been develo ## build locally ```bash sudo apt-get install -y build-essential g++-aarch64-linux-gnu -sudo apt-get install -y flex bison++ +sudo apt-get install -y flex bison sudo apt-get install -y libgflags-dev libgoogle-glog-dev libgtest-dev libgeos++-dev mkdir build && cd build cmake .. @@ -31,6 +31,8 @@ make -j16 ## build by conan ```bash +sudo apt-get install -y build-essential g++-aarch64-linux-gnu +sudo apt-get install -y flex bison pip install conan cd cql2cpp conan install . --build=missing --output-folder build