patches for DPDK stable branches
 help / color / mirror / Atom feed
From: adham@mellanox.com
To: thomas@monjalon.net
Cc: Adham Masarwah <adham@mellanox.com>,
	stable@dpdk.org, anand.rawat@intel.com
Subject: [dpdk-stable] [PATCH] doc: Fix helloworld build on Windows Fixes: 196c650b8b63 ("doc: add guide for Windows") The option -Dexamples=helloworld is missing. The helloworld binary name was wrong. Forcing clang may be required in some environments.
Date: Sun, 19 May 2019 10:06:59 +0300	[thread overview]
Message-ID: <20190519070659.1044112-1-adham@mellanox.com> (raw)

From: Adham Masarwah <adham@mellanox.com>

Cc: stable@dpdk.org
Cc: anand.rawat@intel.com

Signed-off-by: Adham Masarwah <adham@mellanox.com>
---
 doc/guides/windows_gsg/build_dpdk.rst | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/doc/guides/windows_gsg/build_dpdk.rst b/doc/guides/windows_gsg/build_dpdk.rst
index f48805236..04e9dc776 100644
--- a/doc/guides/windows_gsg/build_dpdk.rst
+++ b/doc/guides/windows_gsg/build_dpdk.rst
@@ -59,23 +59,31 @@ default.
 Using the ninja backend
 ~~~~~~~~~~~~~~~~~~~~~~~~
 
+Specifying the compiler might be required to complete the meson command.
+
+.. code-block:: console
+
+    set CC=clang
+
+To compile the examples, the flag "-Dexamples" is required.
+
 .. code-block:: console
 
     cd C:\Users\me\dpdk
-    meson build
+    meson -Dexamples=helloworld build
     cd build
     ninja
 
 Run the helloworld example
 ==========================
 
-Navigate to the build directory and run `dpdk-helloworld.exe`.
+Navigate to the examples in the build directory and run `dpdk-helloworld.exe`.
 
 .. code-block:: console
 
-    cd C:\Users\me\dpdk\build
-    helloworld.exe
+    cd C:\Users\me\dpdk\build\examples
+    dpdk-helloworld.exe
     hello from core 1
+    hello from core 2
     hello from core 3
     hello from core 0
-    hello from core 2
-- 
2.21.0.windows.1


                 reply	other threads:[~2019-05-19  7:07 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190519070659.1044112-1-adham@mellanox.com \
    --to=adham@mellanox.com \
    --cc=anand.rawat@intel.com \
    --cc=stable@dpdk.org \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).