On Wed, Apr 1, 2020 at 11:02 PM David Marchand <david.march...@redhat.com> wrote: > > On Wed, Apr 1, 2020 at 6:25 PM Jerin Jacob <jerinjac...@gmail.com> wrote: > > On Wed, Apr 1, 2020 at 7:42 PM David Marchand <david.march...@redhat.com> > > wrote: > > > On Wed, Apr 1, 2020 at 12:05 PM Jerin Jacob <jerinjac...@gmail.com> wrote: > > > > I assume the patch content will be: > > > > 1) Removing experimental API from app, lib, drivers, examples with > > > > make and meson > > > > 2) Have it enabled at the global level. > > > > > > examples are a special case as they can be compiled out of the dpdk > > > sources. > > > This is why I excluded them of the list in my mail before. > > > > There are a lot of examples already that have ALLOW_EXPERIMENTAL_API. > > What is the issue in enabling ALLOW_EXPERIMENTAL_API in the in tree > > example application? > > I did not say there is an issue in keeping this flag in the example makefiles. > > examples makefile should be self sufficient (like an external > application makefile would be) and are called directly in our building > test scripts: see devtools/test-meson-builds.sh. > So I don't see how it would work if you remove this flag from all > examples makefiles and rely on some global thing.
Thanks for the clarification. I will update meson.build and Makefile in examples. devtools/test-meson-builds.sh tests[1] the the below apps, "cmdline helloworld l2fwd l3fwd skeleton time" What is your preference, Adding in all the examples or above selected ones? [1] # if pkg-config defines the necessary flags, test building some examples if pkg-config --define-prefix libdpdk >/dev/null 2>&1; then export PKGCONF="pkg-config --define-prefix" for example in cmdline helloworld l2fwd l3fwd skeleton timer; do echo "## Building $example" $MAKE -C $DESTDIR/usr/local/share/dpdk/examples/$example clean all done fi > > > -- > David Marchand >