From: Anand Rawat <anand.rawat@intel.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH 0/6] HelloWorld example for Windows
Date: Thu, 28 Feb 2019 23:18:41 -0800 [thread overview]
Message-ID: <20190301071847.13376-1-anand.rawat@intel.com> (raw)
Helloworld example for Windows.
Includes Windows-specific EAL changes and meson
changes to build the code on Windows.
Anand Rawat (6):
eal: eal stub to add windows support
eal: Add header files to support windows
eal: Add headers for compatibility with windows environment
eal: add minimum viable code for eal on windows
examples: Add meson changes for windows
doc: add documention for windows
config/meson.build | 28 +-
config/rte_config.h | 15 +-
config/x86/meson.build | 14 +-
doc/guides/index.rst | 1 +
doc/guides/windows_gsg/build_dpdk.rst | 76 +++++
doc/guides/windows_gsg/index.rst | 14 +
doc/guides/windows_gsg/intro.rst | 20 ++
examples/meson.build | 9 +-
.../common/include/arch/x86/meson.build | 48 +--
.../include/arch/x86/winapp/rte_atomic.h | 19 ++
.../include/arch/x86/winapp/rte_pause.h | 22 ++
lib/librte_eal/common/meson.build | 161 +++++----
lib/librte_eal/meson.build | 10 +-
lib/librte_eal/winapp/eal/eal.c | 79 +++++
lib/librte_eal/winapp/eal/eal_debug.c | 18 +
lib/librte_eal/winapp/eal/eal_lcore.c | 90 +++++
lib/librte_eal/winapp/eal/eal_thread.c | 152 +++++++++
.../winapp/eal/include/exec-env/fnmatch.h | 26 ++
.../winapp/eal/include/exec-env/pthread.h | 19 ++
.../winapp/eal/include/exec-env/regex.h | 56 +++
.../winapp/eal/include/exec-env/rte_windows.h | 44 +++
.../winapp/eal/include/exec-env/sched.h | 41 +++
.../winapp/eal/include/exec-env/sys/queue.h | 320 ++++++++++++++++++
.../winapp/eal/include/exec-env/unistd.h | 7 +
lib/librte_eal/winapp/eal/meson.build | 13 +
lib/meson.build | 6 +-
meson.build | 34 +-
27 files changed, 1212 insertions(+), 130 deletions(-)
create mode 100644 doc/guides/windows_gsg/build_dpdk.rst
create mode 100644 doc/guides/windows_gsg/index.rst
create mode 100644 doc/guides/windows_gsg/intro.rst
create mode 100644 lib/librte_eal/common/include/arch/x86/winapp/rte_atomic.h
create mode 100644 lib/librte_eal/common/include/arch/x86/winapp/rte_pause.h
create mode 100644 lib/librte_eal/winapp/eal/eal.c
create mode 100644 lib/librte_eal/winapp/eal/eal_debug.c
create mode 100644 lib/librte_eal/winapp/eal/eal_lcore.c
create mode 100644 lib/librte_eal/winapp/eal/eal_thread.c
create mode 100644 lib/librte_eal/winapp/eal/include/exec-env/fnmatch.h
create mode 100644 lib/librte_eal/winapp/eal/include/exec-env/pthread.h
create mode 100644 lib/librte_eal/winapp/eal/include/exec-env/regex.h
create mode 100644 lib/librte_eal/winapp/eal/include/exec-env/rte_windows.h
create mode 100644 lib/librte_eal/winapp/eal/include/exec-env/sched.h
create mode 100644 lib/librte_eal/winapp/eal/include/exec-env/sys/queue.h
create mode 100644 lib/librte_eal/winapp/eal/include/exec-env/unistd.h
create mode 100644 lib/librte_eal/winapp/eal/meson.build
--
2.17.1.windows.2
next reply other threads:[~2019-03-01 7:18 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-03-01 7:18 Anand Rawat [this message]
2019-03-01 7:18 ` [dpdk-dev] [PATCH 1/6] eal: eal stub to add windows support Anand Rawat
2019-03-01 14:03 ` Thomas Monjalon
2019-03-01 14:17 ` Bruce Richardson
2019-03-01 14:30 ` Thomas Monjalon
2019-03-01 15:19 ` Luca Boccassi
2019-03-01 7:18 ` [dpdk-dev] [PATCH 2/6] eal: Add header files to support windows Anand Rawat
2019-03-01 7:18 ` [dpdk-dev] [PATCH 3/6] eal: Add headers for compatibility with windows environment Anand Rawat
2019-03-01 7:18 ` [dpdk-dev] [PATCH 4/6] eal: add minimum viable code for eal on windows Anand Rawat
2019-03-01 7:18 ` [dpdk-dev] [PATCH 5/6] examples: Add meson changes for windows Anand Rawat
2019-03-01 7:18 ` [dpdk-dev] [PATCH 6/6] doc: add documention " Anand Rawat
2019-03-01 19:02 ` Stephen Hemminger
2019-03-02 2:41 ` Ranjit Menon
2019-03-06 8:33 ` Thomas Monjalon
2019-03-01 13:47 ` [dpdk-dev] [PATCH 0/6] HelloWorld example for Windows Bruce Richardson
2019-03-04 10:13 ` David Marchand
2019-03-04 10:14 ` David Marchand
2019-03-05 23:43 ` Anand Rawat
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=20190301071847.13376-1-anand.rawat@intel.com \
--to=anand.rawat@intel.com \
--cc=dev@dpdk.org \
/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).