Skip to content

Commit eb35d27

Browse files
authored
Merge pull request #149 from ityuhui/yh-readme-0921
Add "debug mode" and "Compatibility" descriptions to README.md
2 parents 8afde9c + c435336 commit eb35d27

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ cd ${CLIENT_REPO_ROOT}/kubernetes
4141
# Build
4242
mkdir build
4343
cd build
44+
# If you don't need to debug the C client library:
4445
cmake -DCMAKE_INSTALL_PREFIX=/usr/local ..
46+
# If you want to use `gdb` to debug the C client library, add `-DCMAKE_BUILD_TYPE=Debug` to the cmake command line, e.g.
47+
# cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr/local ..
4548
make
4649
sudo make install
4750
```
@@ -170,6 +173,10 @@ Refer to the [example](https://github.com/kubernetes-client/c/tree/master/exampl
170173

171174
All APIs and Models' documentation can be found at the [Generated client's README file](https://github.com/kubernetes-client/c/blob/master/kubernetes/README.md#documentation-for-api-endpoints)
172175

176+
## Versions and Compatibility
177+
178+
See [versioning-and-compatibility.md](./docs/versioning-and-compatibility.md)
179+
173180
## Community, discussion, contribution, and support
174181

175182
Learn how to engage with the Kubernetes community on the [community page](http://kubernetes.io/community/).

0 commit comments

Comments
 (0)