Re: [dpdk-dev] Pktgen having problem with Lua on RHEL

2018-12-20 Thread Hossein Golestani
Hi Keith, Thanks for your reply. I solved the problem just now. There was no misspelling. Apparently, for static linking (i.e., linking **.a* files), there's no need to use *-L*. So, for example, instead of *MYLIBS += -lpktgen_lua -L:/home/me/lua/liblua.a*, I should have simply used *MYLIBS

Re: [dpdk-dev] Pktgen having problem with Lua on RHEL

2018-12-19 Thread Wiles, Keith
> On Dec 18, 2018, at 7:53 PM, Hossein Golestani wrote: > > Hi, > > I'm having a hard time compiling Pktgen on a Red Hat machine. The source of > the problem is the Lua library. > > I'm using Pktgen 3.5.9, and it requires Lua 5.3. Standard installation of > Lua on RHEL ends up having Lua 5.1.

[dpdk-dev] Pktgen having problem with Lua on RHEL

2018-12-19 Thread Hossein Golestani
Hi, I'm having a hard time compiling Pktgen on a Red Hat machine. The source of the problem is the Lua library. I'm using Pktgen 3.5.9, and it requires Lua 5.3. Standard installation of Lua on RHEL ends up having Lua 5.1. So for having the latest release, I need to compile Lua from its source. My