From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id EBA4DA04AB; Fri, 8 Nov 2019 20:32:33 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 2DA1F1D14D; Fri, 8 Nov 2019 20:32:33 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 58EF71D148 for ; Fri, 8 Nov 2019 20:32:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1573241550; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=eTpRV603KGLC76a+9ULZgmD+fc/kwhohxfjyXaoegR8=; b=NBbH0FvRdgQhF132mHg31eExuik7Sm03W1jtroDlT6ZgOF0N8NUntfz7B3W8KT/34hQWL8 4gP0KQjmU/X7H7vcRjNJEdOsA0Wnn/WxRnsdBMbeUvxqDmHkUWUYarMi9/K+eC4E9FrgIh GOdyo8PkIE8Qhcl96Fz9u307hSiF8bk= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-114-_MIU3CmIOW-cl43zBJFRNw-1; Fri, 08 Nov 2019 14:32:26 -0500 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 00BC9107ACC4; Fri, 8 Nov 2019 19:32:25 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-222.brq.redhat.com [10.40.204.222]) by smtp.corp.redhat.com (Postfix) with ESMTP id 47381600C9; Fri, 8 Nov 2019 19:32:23 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: aostruszka@marvell.com, bruce.richardson@intel.com, Aaron Conole , Michael Santana Date: Fri, 8 Nov 2019 20:32:10 +0100 Message-Id: <1573241531-16484-1-git-send-email-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-MC-Unique: _MIU3CmIOW-cl43zBJFRNw-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [dpdk-dev] [PATCH] ci: remove LTO job 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The LTO job using gcc-7 has two issues at the moment: - warnings about implicit fallthroughs trigger build errors: In file included from ...common/include/rte_memory.h:22:0, from ...linux/eal/eal_hugepage_info.c:24: ...common/include/rte_common.h: In function =E2=80=98rte_str_to_size=E2=80= =99: ...common/include/rte_common.h:744:27: error: this statement may fall through [-Werror=3Dimplicit-fallthrough=3D] case 'G': case 'g': size *=3D 1024; /* fall-through */ ~~~~~^~~~~~~ - if we disable this warning, linking the binaries takes too much time and the job is terminated by Travis because it reaches the maximum time limit Fixes: 098cc0fea3be ("build: add option to enable LTO") Signed-off-by: David Marchand --- .travis.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index a1c31d4..3d6ef29 100644 --- a/.travis.yml +++ b/.travis.yml @@ -105,15 +105,6 @@ matrix: apt: packages: - *extra_packages - - env: DEF_LIB=3D"static" OPTS=3D"-Db_lto=3Dtrue" EXTRA_PACKAGES=3D1 CC= =3Dgcc-7 - compiler: gcc - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - *extra_packages - - gcc-7 =20 =20 script: ./.ci/${TRAVIS_OS_NAME}-build.sh --=20 1.8.3.1