Re: [vpp-dev] Build failing on Fedora

2018-11-27 Thread Jim Thompson
Tomas, Can’t we instead add ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-75) RPM_DEPENDS +=epel-release endif Around line 113 of the top-level Makefile, immediately after the cascaded ifeq/else ifeq/else/endif ? That should bring in epel-release for 7.5. (But I admit, not tested.) Jim >

Re: [vpp-dev] Build failing on Fedora

2018-11-26 Thread Burt Silverman
Possibly "29" is the only Fedora release that has issues? At the very least, "make install-dep" was coughing there. Burt -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#11421): https://lists.fd.io/g/vpp-dev/message/11421 Mute This Topic: https://lis

Re: [vpp-dev] Build failing on Fedora

2018-11-26 Thread Thomas F Herbert
I just verified with top of master that vpp builds fine on Fedora 28. As for the current Centos release 7.5, you must install epel as below which is not explicitly in build dependencies. yum install epel-release On 11/26/2018 01:57 PM, Jim Thompson wrote: On Nov 26, 2018, at 12:05 PM, Bu

Re: [vpp-dev] Build failing on Fedora

2018-11-26 Thread Thomas F Herbert
It is set to cmake3 cmake isn't available in Centos but cmake3 is. We should patch Makefile so Fedora dep is cmake but Centos/RHEL is cmake3. I will work on a fix. --Tom On 11/26/2018 01:57 PM, Jim Thompson wrote: On Nov 26, 2018, at 12:05 PM, Burt Silverman > wrot

Re: [vpp-dev] Build failing on Fedora

2018-11-26 Thread Jim Thompson
> On Nov 26, 2018, at 12:05 PM, Burt Silverman wrote: > > Hi Ed, > > Thank you for looking at my change, and I apologize for some laziness -- I > should have made it more clear that I was only doing part of the job -- not > adding the needed ifeq's so that this Fedora stuff would be isolated

Re: [vpp-dev] Build failing on Fedora

2018-11-26 Thread Burt Silverman
Hi Ed, Thank you for looking at my change, and I apologize for some laziness -- I should have made it more clear that I was only doing part of the job -- not adding the needed ifeq's so that this Fedora stuff would be isolated from other platforms. I leave it to somebody else to finish the job. O

Re: [vpp-dev] Build failing on Fedora

2018-11-26 Thread Ed Kern via Lists.Fd.Io
Burt, Just an fyi and a comment… fyi on the build containers we install cmake (this predated cmakeY being in the Makefile) cmake version 2.8.12.2 cmake3 is installed as part of install dep cmake3 version 3.12.2 My build will fail (centos) without cmake3 CMake Error at CMakeLists.txt:14 (cmak

Re: [vpp-dev] Build failing on Fedora

2018-11-24 Thread Burt Silverman
I agree re cmake3, it looks like the correct package is cmake, not cmake3. Maybe something like this is needed (for the Fedora case) since dnf has been around a long time now. diff --git a/Makefile b/Makefile index e0c710fd..3c8d7c31 100644 --- a/Makefile +++ b/Makefile @@ -82,13 +82,13 @@ else

[vpp-dev] Build failing on Fedora

2018-11-21 Thread Stephen Hemminger
Build is failing for me on latest up to date version of Fedora and VPP. This is a clean new VM, and did the install of dependencies but Makefile is still confused. $ make build Please install missing RPMs: \npackage cmake3 is not installed\n by executing "make install-dep"\n Also looks like ech