Re: [dpdk-users] Building app with source in subdirectory ?doesn't work

2018-09-10 Thread Petr Houska
Hi, > OK, your reply clarifies the issue. I confirm that I could reproduce > the same issue you had following your reply. So something is missing, > or maybe if the use case is justified, maybe additional work should be > done in the build system (maybe related to > mk/rte.extsubdir.mk) to supp

Re: [dpdk-users] Building app with source in subdirectory ?doesn't work

2018-09-10 Thread Rami Rosen
Hi Petr, OK, your reply clarifies the issue. I confirm that I could reproduce the same issue you had following your reply. So something is missing, or maybe if the use case is justified, maybe additional work should be done in the build system (maybe related to mk/rte.extsubdir.mk) to support it (

Re: [dpdk-users] Building app with source in subdirectory ?doesn't work

2018-09-09 Thread Petr Houska
Hi, > >I tried debugging the `Makefile` via `make D=1` but it doesn't output any > >debug > >information before failing on abovementioned message. > > You need to run "make V=1" in order to get debug messages in the build > process, > and not D=1. I would suggest that you will try again with V=

Re: [dpdk-users] Building app with source in subdirectory ?doesn't work

2018-09-09 Thread Rami Rosen
HI Peter, >I tried debugging the `Makefile` via `make D=1` but it doesn't output any >debug >information before failing on abovementioned message. You need to run "make V=1" in order to get debug messages in the build process, and not D=1. I would suggest that you will try again with V=1 and pos

[dpdk-users] Building app with source in subdirectory ?doesn't work

2018-09-08 Thread Petr Houska
Hi, I'm having troubles creating a working Makefile for DPDK app that has source files in subdirectories. Minimal repro I created uses the `helloworld` sample with following changes: 1. Add `tst` subdirectory to project's root 2. Add empty `tst.c` file to such subdirectory 3. Modify orig