<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>11e02702 - examples: fix pkg-config override</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/l2fwd-event/Makefile#11e02702</link>
        <description>examples: fix pkg-config overrideMove pkg-config override to beginning in the Makefile to allowuse PKGCONF variable to detect the libdpdk availability.Fixes: fda34680eb9a (&quot;examples: remove legacy sections of makefiles&quot;)Cc: stable@dpdk.orgSigned-off-by: Jerin Jacob &lt;jerinj@marvell.com&gt;Acked-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;

            List of files:
            /dpdk/examples/l2fwd-event/Makefile</description>
        <pubDate>Wed, 05 May 2021 14:25:25 +0000</pubDate>
        <dc:creator>Jerin Jacob &lt;jerinj@marvell.com&gt;</dc:creator>
    </item>
<item>
        <title>5a196330 - examples: warn about broken pkg-config</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/l2fwd-event/Makefile#5a196330</link>
        <description>examples: warn about broken pkg-configSince the examples are designed to be built by end-users using Make, wecan detect and warn about broken pkg-config on the user&apos;s system as partof the build process.Signed-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;

            List of files:
            /dpdk/examples/l2fwd-event/Makefile</description>
        <pubDate>Tue, 19 Jan 2021 13:03:24 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>bc8e3247 - examples: restore trace point</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/l2fwd-event/Makefile#bc8e3247</link>
        <description>examples: restore trace pointBefore make removal, those examples were built with experimental flagfor tracepoints to be compiled in but the pkg-config part of thosemakefiles were missed.Fixes: 78d44153de8f (&quot;ethdev: add tracepoints&quot;)Cc: stable@dpdk.orgSigned-off-by: David Marchand &lt;david.marchand@redhat.com&gt;Acked-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;

            List of files:
            /dpdk/examples/l2fwd-event/Makefile</description>
        <pubDate>Sat, 14 Nov 2020 09:05:33 +0000</pubDate>
        <dc:creator>David Marchand &lt;david.marchand@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>fda34680 - examples: remove legacy sections of makefiles</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/l2fwd-event/Makefile#fda34680</link>
        <description>examples: remove legacy sections of makefilesThe example app makefiles contained sections using the legacy method ofcompiling with make. These are no longer needed, and are removed,leaving only the section that uses pkg-config for the make build.Signed-off-by: Ciara Power &lt;ciara.power@intel.com&gt;Acked-by: Nicolas Chautru &lt;nicolas.chautru@intel.com&gt;

            List of files:
            /dpdk/examples/l2fwd-event/Makefile</description>
        <pubDate>Thu, 03 Sep 2020 15:26:41 +0000</pubDate>
        <dc:creator>Ciara Power &lt;ciara.power@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8549295d - build/pkg-config: improve static linking flags</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/l2fwd-event/Makefile#8549295d</link>
        <description>build/pkg-config: improve static linking flagsRather than setting -Bstatic in the linker flags when doing a static link,and then having to explicitly set -Bdynamic again afterwards, we can updatethe pkg-config file to use -l:libfoo.a syntax to explicitly refer to thestatic library in question. Since this syntax is not supported by meson&apos;spkg-config module directly, we can post-process the .pc files instead toadjust them.Once done, we can simplify the examples&apos; makefiles and the docs by removingthe explicit static flag.Signed-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;Acked-by: Luca Boccassi &lt;bluca@debian.org&gt;Acked-by: Sunil Pai G &lt;sunil.pai.g@intel.com&gt;Signed-off-by: Thomas Monjalon &lt;thomas@monjalon.net&gt;

            List of files:
            /dpdk/examples/l2fwd-event/Makefile</description>
        <pubDate>Tue, 30 Jun 2020 14:14:32 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>78d44153 - ethdev: add tracepoints</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/l2fwd-event/Makefile#78d44153</link>
        <description>ethdev: add tracepointsAdd tracepoints at important and mandatory APIs for tracing support.Signed-off-by: Sunil Kumar Kori &lt;skori@marvell.com&gt;Acked-by: David Marchand &lt;david.marchand@redhat.com&gt;

            List of files:
            /dpdk/examples/l2fwd-event/Makefile</description>
        <pubDate>Wed, 22 Apr 2020 19:03:45 +0000</pubDate>
        <dc:creator>Sunil Kumar Kori &lt;skori@marvell.com&gt;</dc:creator>
    </item>
<item>
        <title>69b1bb49 - examples: hide error for missing pkg-config path flag</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/l2fwd-event/Makefile#69b1bb49</link>
        <description>examples: hide error for missing pkg-config path flagSome versions of pkg-config don&apos;t support the --path flag, which is not afatal error when building the apps. Without the flag, the makefile justcannot track the .pc file of DPDK as a dependency of the build. Therefore,we can ignore the error and suppress it by redirecting to /dev/null thestderr from that call to pkg-config.Fixes: 22119c4591a0 (&quot;examples: use pkg-config in makefiles&quot;)Cc: stable@dpdk.orgSigned-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;Tested-by: Ferruh Yigit &lt;ferruh.yigit@intel.com&gt;

            List of files:
            /dpdk/examples/l2fwd-event/Makefile</description>
        <pubDate>Fri, 15 Nov 2019 15:17:00 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>12a652a0 - examples: fix build with old pkg-config</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/l2fwd-event/Makefile#12a652a0</link>
        <description>examples: fix build with old pkg-configNot all versions of pkg-config in distros have support for the--define-prefix flag [1], causing errors when building examples manually orwith test-meson-builds.sh script [2].For the former case, we need to remove the hard-coded use of the flag inthe Makefiles.For the latter case, the flag is necessary for builds to succeed, so weskip the tests when it&apos;s not present, passing it as part of the pkg-configcommand if it is supported.[1]CentOS Linux release 7.7.1908 (Core)pkg-config version 0.27.1[2] ## Building cmdlineUnknown option --define-prefixgmake: Entering directory`...ild-x86-default/install-root/usr/local/share/dpdk/examples/cmdline&apos;rm -f build/cmdline build/cmdline-static build/cmdline-sharedtest -d build &amp;&amp; rmdir -p build || trueUnknown option --define-prefixUnknown option --define-prefixgcc -O3  main.c commands.c parse_obj_list.c -o build/cmdline-sharedmain.c:14:28: fatal error: cmdline_rdline.h: No such file or directoryFixes: ca9268529d2b (&quot;examples: support relocated DPDK install&quot;)Fixes: 7f80a2102bbb (&quot;devtools: test pkg-config file&quot;)Cc: stable@dpdk.orgReported-by: Ferruh Yigit &lt;ferruh.yigit@intel.com&gt;Signed-off-by: Bruce Richardson &lt;bruce.richardson@intel.com&gt;Tested-by: Ferruh Yigit &lt;ferruh.yigit@intel.com&gt;

            List of files:
            /dpdk/examples/l2fwd-event/Makefile</description>
        <pubDate>Fri, 15 Nov 2019 15:16:59 +0000</pubDate>
        <dc:creator>Bruce Richardson &lt;bruce.richardson@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>69de9488 - examples/l2fwd-event: add infra to split eventdev framework</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/l2fwd-event/Makefile#69de9488</link>
        <description>examples/l2fwd-event: add infra to split eventdev frameworkAdd infra to split eventdev framework based on event Tx adaptercapability.If event Tx adapter has internal port capability then we use`rte_event_eth_tx_adapter_enqueue` to transmitting packets elsewe use a SINGLE_LINK event queue to enqueue packets to a servicecore which is responsible for transmitting packets.Signed-off-by: Sunil Kumar Kori &lt;skori@marvell.com&gt;Signed-off-by: Pavan Nikhilesh &lt;pbhagavatula@marvell.com&gt;Acked-by: Nipun Gupta &lt;nipun.gupta@nxp.com&gt;Acked-by: Jerin Jacob &lt;jerinj@marvell.com&gt;

            List of files:
            /dpdk/examples/l2fwd-event/Makefile</description>
        <pubDate>Wed, 30 Oct 2019 16:26:44 +0000</pubDate>
        <dc:creator>Sunil Kumar Kori &lt;skori@marvell.com&gt;</dc:creator>
    </item>
<item>
        <title>1b2143aa - examples/l2fwd-event: add infra for eventdev</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/l2fwd-event/Makefile#1b2143aa</link>
        <description>examples/l2fwd-event: add infra for eventdevAdd infra to select event device as a mode to process packets throughcommand line arguments. Also, allow the user to select the schedule typeto be RTE_SCHED_TYPE_ORDERED, RTE_SCHED_TYPE_ATOMIC orRTE_SCHED_TYPE_PARALLEL.Usage:`--mode=&quot;eventdev&quot;` or `--mode=&quot;poll&quot;``--eventq-sched=&quot;ordered&quot;`, `--eventq-sched=&quot;atomic&quot;` or`--event-sched=parallel`Signed-off-by: Sunil Kumar Kori &lt;skori@marvell.com&gt;Signed-off-by: Pavan Nikhilesh &lt;pbhagavatula@marvell.com&gt;Acked-by: Nipun Gupta &lt;nipun.gupta@nxp.com&gt;Acked-by: Jerin Jacob &lt;jerinj@marvell.com&gt;

            List of files:
            /dpdk/examples/l2fwd-event/Makefile</description>
        <pubDate>Wed, 30 Oct 2019 16:26:43 +0000</pubDate>
        <dc:creator>Pavan Nikhilesh &lt;pbhagavatula@marvell.com&gt;</dc:creator>
    </item>
<item>
        <title>4ff45798 - examples/l2fwd-event: add default poll mode routines</title>
        <link>http://172.16.0.5:8080/history/dpdk/examples/l2fwd-event/Makefile#4ff45798</link>
        <description>examples/l2fwd-event: add default poll mode routinesAdd the default l2fwd poll mode routines similar to examples/l2fwd.Signed-off-by: Sunil Kumar Kori &lt;skori@marvell.com&gt;Signed-off-by: Pavan Nikhilesh &lt;pbhagavatula@marvell.com&gt;Acked-by: Nipun Gupta &lt;nipun.gupta@nxp.com&gt;Acked-by: Jerin Jacob &lt;jerinj@marvell.com&gt;

            List of files:
            /dpdk/examples/l2fwd-event/Makefile</description>
        <pubDate>Wed, 30 Oct 2019 16:26:42 +0000</pubDate>
        <dc:creator>Pavan Nikhilesh &lt;pbhagavatula@marvell.com&gt;</dc:creator>
    </item>
</channel>
</rss>
