From patchwork Tue Jan 3 22:25:16 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [esnacc-dev,RFC,5/5] doc/developer-guide-sample-app: Update compile line X-Patchwork-Submitter: Aaron Conole X-Patchwork-Id: 5 X-Patchwork-Delegate: aconole@bytheb.org Message-Id: <1483482316-10045-6-git-send-email-aconole@bytheb.org> To: dev@lists.esnacc.org Date: Tue, 3 Jan 2017 17:25:16 -0500 From: Aaron Conole List-Id: eSNACC Development discussion The developer guide for C++ includes a now superfluous reference to the cxx-lib include directory. With a prior change, if the esnacc library is installed in a standard prefix (aka `/usr`), there is no longer a need to spell out the includes, so remove it. Signed-off-by: Aaron Conole --- doc/developer-guide-sample-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/developer-guide-sample-app.md b/doc/developer-guide-sample-app.md index 8e69b15..9249fc5 100644 --- a/doc/developer-guide-sample-app.md +++ b/doc/developer-guide-sample-app.md @@ -480,7 +480,7 @@ Wrapping each of the C++ code sections above in a single file called We can compile this with the following simple command: `g++ -std=c++0x -o test discovery.cpp NodeDiscovery.cpp - -I. -I/usr/include/cxx-lib/inc -lcxxasn1 -pthread -lrt` + -I. -lcxxasn1 -pthread -lrt` That will generate the *test* binary, which can be executed on our host machine. It is important not to run this in production - after all it is meant