X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=doc%2Fguides%2Fwindows_gsg%2Fbuild_dpdk.rst;h=6711e07e21bc639e54e0185bc2bc70f1a356ca57;hb=2755e3e55c6dbf81e0fad50b86df65d4a2ed2384;hp=f48805236626e4d6f286a26e76d1ddc55d478793;hpb=196c650b8b63fc74f3c30d9be35fc0c8108abe8e;p=dpdk.git diff --git a/doc/guides/windows_gsg/build_dpdk.rst b/doc/guides/windows_gsg/build_dpdk.rst index f488052366..6711e07e21 100644 --- a/doc/guides/windows_gsg/build_dpdk.rst +++ b/doc/guides/windows_gsg/build_dpdk.rst @@ -59,22 +59,30 @@ 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 3 hello from core 0