Update installation authored by Pablo Gil Pereira's avatar Pablo Gil Pereira
...@@ -30,6 +30,18 @@ The following compile-flags for CMake are supported: ...@@ -30,6 +30,18 @@ The following compile-flags for CMake are supported:
#### DeepSHARQ #### DeepSHARQ
```bash
mkdir tflite_build
cd tflite_build
```
Fix `tensorflow_src/tensorflow/lite/c/CMakeLists.txt` file by changing `common.c` in line 66 into `common.cc` before compiling.
```bash
cmake ../tensorflow_src/tensorflow/lite/c
cmake --build . -j
```
### Debugging ### Debugging
We provide a DEBUG build type for CMake. You can use it by typing: We provide a DEBUG build type for CMake. You can use it by typing:
... ...
......