Update clone and compile instructions
Signed-off-by: Chris Cain <cjcain@us.ibm.com>
Change-Id: I3c32cd0f0da2f930c309619732cfba0084bc8f94
diff --git a/DEVELOPING.md b/DEVELOPING.md
index 11e7c93..5ff1391 100644
--- a/DEVELOPING.md
+++ b/DEVELOPING.md
@@ -137,20 +137,10 @@
directions in the gerrit setup document.
- Clone bmcweb from gerrit
```
- git clone ssh://openbmc.gerrit/bmcweb/
+ git clone ssh://openbmc.gerrit/openbmc/bmcweb/
```
- - Ensure it compiles
- ```
- cmake ./ && make
- ```
- **Note:** If you'd like to enable debug traces in bmcweb, use the
- following command for cmake
- ```
- cmake ./ -DCMAKE_BUILD_TYPE:type=Debug
- ```
-
- - Make your changes as needed, rebuild with `make`
+ - Follow directions in [README.md](https://github.com/openbmc/bmcweb#configuration) to compile
- Reduce binary size by stripping it when ready for testing
```
diff --git a/README.md b/README.md
index 2875e36..715edc3 100644
--- a/README.md
+++ b/README.md
@@ -40,6 +40,11 @@
meson builddir -Dwrap_mode=nofallback
ninja -C builddir
```
+### Enable debug traces
+```ascii
+meson builddir -Dbuildtype=debug
+ninja -C builddir
+```
### Generate test coverage report:
```ascii
meson builddir -Db_coverage=true -Dtests=enabled