From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 8B84310B98 for ; Thu, 30 Mar 2017 12:01:41 +0200 (CEST) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga105.fm.intel.com with ESMTP; 30 Mar 2017 03:01:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,246,1486454400"; d="scan'208";a="949741362" Received: from irsmsx153.ger.corp.intel.com ([163.33.192.75]) by orsmga003.jf.intel.com with ESMTP; 30 Mar 2017 03:01:39 -0700 Received: from irsmsx110.ger.corp.intel.com ([169.254.15.151]) by IRSMSX153.ger.corp.intel.com ([163.33.192.75]) with mapi id 14.03.0319.002; Thu, 30 Mar 2017 11:01:38 +0100 From: "Pattan, Reshma" To: "Horton, Remy" CC: Thomas Monjalon , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v13 1/6] lib: add information metrics library Thread-Index: AQHSqMoudXCd9/BUZUGmqgLycXDCjqGtHqLA Date: Thu, 30 Mar 2017 10:01:37 +0000 Message-ID: <3AEA2BF9852C6F48A459DA490692831F0112F19C@irsmsx110.ger.corp.intel.com> References: <1490812128-4172-1-git-send-email-remy.horton@intel.com> <1490812128-4172-2-git-send-email-remy.horton@intel.com> In-Reply-To: <1490812128-4172-2-git-send-email-remy.horton@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZTU3OTAzOTctZDBmMy00NWQ1LWI0ZjQtN2M0NDg2OGM4NzMyIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IkhhUWI2a0lUUmVINkpaQldxVEZRWUFvdWFaYldEY3BGMUt6ZUdcL09idUYwPSJ9 x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v13 1/6] lib: add information metrics library X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Mar 2017 10:01:42 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Remy Horton > Sent: Wednesday, March 29, 2017 7:29 PM > To: dev@dpdk.org > Cc: Thomas Monjalon > Subject: [dpdk-dev] [PATCH v13 1/6] lib: add information metrics library >=20 > a/lib/librte_metrics/Makefile b/lib/librte_metrics/Makefile new file mode > 100644 index 0000000..156ea95 > --- /dev/null > +++ b/lib/librte_metrics/Makefile > +include $(RTE_SDK)/mk/rte.vars.mk > + > +# library name > +LIB =3D librte_metrics.a > + > +CFLAGS +=3D $(WERROR_FLAGS) -I$(SRCDIR) All new libraries do add -O3 flag explicitly as of now.=20 Looks like higher level make files don't provide -O3 support, because afte= r compiling using V=3D1 option i.e. "make -j install T=3Dx86_64-native-linu= xapp-gcc V=3D1", I don't see any -O3 flags been used for metrics library source files compil= ation. So you can check the same and add the flags. Patchwork has reported couple of warnings you can check them too. Thanks, Reshma