File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 11pes_parent_dir: =$(shell pwd) /$(lastword $(MAKEFILE_LIST ) )
22cur_makefile_path := $(shell dirname $(pes_parent_dir ) )
33
4- all : build build-example target/tikv-example
4+ all : build target/tikv-example
55
66build : pre-build target/debug/libtikv_client.a
77
88release : pre-build target/release/libtikv_client.a
99
10- pre-build : target/tikv_client_glue.cc include/tikv_client_glue.h
11- mkdir target
10+ .PHONY : directories
11+
12+ directories :
13+ mkdir -p target
14+
15+ pre-build : directories target/tikv_client_glue.cc include/tikv_client_glue.h
1216
1317clean :
1418 cargo clean
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ This client is still in the stage of prove-of-concept and under heavy developmen
1010## Build
1111
1212``` bash
13+ # cxxbridge-cmd 1.0.18 requires rustc 1.48+ and c++11 or newer
1314cargo install cxxbridge-cmd --force --version 1.0.18
1415make
1516```
You can’t perform that action at this time.
0 commit comments