From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f177.google.com (mail-wr0-f177.google.com [209.85.128.177]) by dpdk.org (Postfix) with ESMTP id C42B6292D for ; Fri, 23 Jun 2017 20:41:18 +0200 (CEST) Received: by mail-wr0-f177.google.com with SMTP id k67so76476247wrc.2 for ; Fri, 23 Jun 2017 11:41:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=message-id:subject:from:to:date:in-reply-to:references :content-transfer-encoding:mime-version; bh=7on9PkUxOqv/8SbXSHpwyRlBJ//B0l7+nQEbft5F36o=; b=gY6Rjt2FZSJ0fHJsnvhTlroRQcIMe60hLjfwkr+QTfkd/fBiaefJCsg0/I0Jb4MLhO f6RJuNFhqQahdPjH6rKZM4t55BNr1q6EkjtdcGOM9xBGunyJHIIDKReXhDDm7zIP/yEm VLjMCcJ5kmqBC0a6bQ7VO38rWx5f5Plx0XkBFVvMFQ85HsGa6BUNsC04DImjKuQEX1fM rjCqTv8VnfrNqpTyfIMmeTvfMEIhwz4eb+5Plb+zbY06X4GKusG0/yI52L9hP1g2LY1x dWRf5KuH2CRcU+x4CCxg2dxSzPybaO0rgynCnGyNF/0sbBho7BEoA6pFNWvFaipiV06M v8dg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:subject:from:to:date:in-reply-to :references:content-transfer-encoding:mime-version; bh=7on9PkUxOqv/8SbXSHpwyRlBJ//B0l7+nQEbft5F36o=; b=LLpD82mzbYFSHZr5p7KTLLo+UTuT76Iue8CX/Zf7KTMnBpaVnWr3Ota4Ao0wFFCo/E 7O7dS1JPtK/IolYmJ7BntpzEf9xuK4enu2GSWZcPW4BMpf1vpMfU7x7EGXFVim34RnbZ UM6/dJ93XpVTIQm0FWm+RVTfhzE4ab8FfqJL24xSqMnseNkXShkHm82HBVZxbUuxbJPe tUdNSAaUBJAGJTrUxmtTo4B++7v5xHTn/vekt0RFcYGsrOSTGqCsxYGbcLjxvlgBTh0C rUeYmibtQMRwy04fuNsizUNyA113G9FcwIq9tx4dp7OeAs4MFaMg+YU+HAyBlkQVzvR7 sMOA== X-Gm-Message-State: AKS2vOw8wDx6uZ7M3B+1YHqWcdVzBvuIUWjcJEDAJvmIf6r6UDI8krEa rAv5WNGUpI2/4s9MHyI= X-Received: by 10.28.128.22 with SMTP id b22mr6540514wmd.42.1498243278136; Fri, 23 Jun 2017 11:41:18 -0700 (PDT) Received: from localhost ([2a00:23c5:be80:2700:4a51:b7ff:fe0b:4749]) by smtp.gmail.com with ESMTPSA id y9sm6829219wry.32.2017.06.23.11.41.17 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 23 Jun 2017 11:41:17 -0700 (PDT) Message-ID: <1498243276.25295.19.camel@gmail.com> From: Luca Boccassi To: dev@dpdk.org Date: Fri, 23 Jun 2017 19:41:16 +0100 In-Reply-To: <20170623181616.16981-1-lboccass@brocade.com> References: <20170622135825.7017-1-lboccass@brocade.com> <20170623181616.16981-1-lboccass@brocade.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Evolution 3.22.6-1 Mime-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2 0/7] Reproducible build 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: Fri, 23 Jun 2017 18:41:19 -0000 On Fri, 2017-06-23 at 19:16 +0100, lboccass@brocade.com wrote: > From: Luca Boccassi >=20 > In the past couple of years a concerted effort among almost all Linux > distros has been striving toward achieving reproducible builds. [1] > This involves changes to the toolchain, new tools and CI systems. [2] >=20 > v1 fixed the documentation, examples and linker script generation. > v2 fixes all problems, which were caused by unstable order of headers > inclusion, source files listing and object file listing when passing > them to the compiler. > DPDK's build, at least with the default configuration, is fully > reproducible with this patch series as tested by the Reproducible > Builds developers experimental toolchain. >=20 > [1] https://reproducible-builds.org/ > [2] https://reproducible-builds.org/tools/ > [3] https://wiki.debian.org/ReproducibleBuilds/ExperimentalToolchain# > Us >=20 > Luca Boccassi (7): > =C2=A0 mk: fix excluding .doctrees when installing docs > =C2=A0 mk: sort list of shared objects in linker script > =C2=A0 mk: sort list of files in examples.dox > =C2=A0 mk: sort headers before wildcard inclusion > =C2=A0 mk: sort source files before passing them to the compiler > =C2=A0 mk: sort object files when building deps lists > =C2=A0 mk: always rebuild in the same order Agh git send-email ate one patch! Third time's the charm... Kind regards, Luca Boccassi