> -----Original Message----- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Panu Matilainen > Sent: Tuesday, February 24, 2015 10:47 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] mk: Work around Debian/Ubuntu-specific 'gcc - > dumpversion' output > > Commit 71f0ab1849b4fc3ca928deb566df12ca725ed150 broke compilation on some > versions of Debian and Ubuntu where gcc has been modified to only emit > MAJOR.MINOR part of the version from 'gcc -dumpversion'. > Drop the micro-version from gcc version comparisons to work around this, > it wasn't being used for anything anyway. > > -ifeq ($(shell test $(GCC_VERSION) -ge 440 && echo 1), 1) > +ifeq ($(shell test $(GCC_VERSION) -ge 44 && echo 1), 1)
Hi, I see this has been applied already but to me this version is less clear than the previous patch version. And are we sure we won't need the micro-version. If we do, to account for something broken in a point release of gcc, we will have to redo this patch again. John