From patchwork Thu May 10 04:34:46 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Igor Torrente X-Patchwork-Id: 27199 Received: (qmail 123028 invoked by alias); 10 May 2018 04:35:42 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 123016 invoked by uid 89); 10 May 2018 04:35:41 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, FREEMAIL_FROM, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=bash X-HELO: mail-qt0-f196.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=2ZAtm5IdArcmoAdQlhIRTq6dzpjPZ6pkTjT/YiwJbKs=; b=VGexeHFkh4+xjEPwnHj+iRbBzyACxu19vPAX8IMFoSp6NYIlMBbqWl7FN9U5wZFJUQ ByIaMY/NZWoc2p2kVPk/BygmkHA2vfb65FWKKnacvaaDs59xwJ/YwE19yDTSy3jaY8d/ d/+drMFzp64iz9nn0ogXfTLcKGhX33Vf/EAeGJCagB27vNDn0ImWWK9BzQNclVh53Any X7OIDOWELkRBEEaEdVDSe+XmW40PDJp0jtVoB6Lf8EcjLa5O00EbCztVeP7EQifVZKfq KdkD34TKv51pzrRKlSlN4ini3Ew+qfUVwTuIH4StsRpev4J+9VZVN+bsacvOOYEPCfrn Dm2w== X-Gm-Message-State: ALQs6tBihKZOB8BgG0V2+DUO3bLw6cJCipfvTpfxg1nSWy5GQyj361Yu zqC83oajwbE9qh9GPGMD8ILhuRmqIKI= X-Google-Smtp-Source: AB8JxZrYl+JUVDfaPVwk5ColhLo/cvzDyUqXRXwPbNO2IHxIe+ZPYo6F1e1hHj6wO2k7IiN3xzCrCQ== X-Received: by 2002:ac8:f96:: with SMTP id b22-v6mr46031668qtk.301.1525926938585; Wed, 09 May 2018 21:35:38 -0700 (PDT) From: Igor Torrente To: libc-alpha@sourceware.org, rodolfo@ic.unicamp.br Cc: Igor Torrente Subject: [PATCH] Add two new compilation options Date: Thu, 10 May 2018 01:34:46 -0300 Message-Id: <20180510043446.10811-2-igormtorrente@gmail.com> In-Reply-To: <20180510043446.10811-1-igormtorrente@gmail.com> References: <20180510043446.10811-1-igormtorrente@gmail.com> From: Igor Torrente Add two new compilation options for Power 8 architecture. --- scripts/slave/buildbot_selector.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scripts/slave/buildbot_selector.py b/scripts/slave/buildbot_selector.py index 6c2394b..f84d708 100755 --- a/scripts/slave/buildbot_selector.py +++ b/scripts/slave/buildbot_selector.py @@ -21,6 +21,14 @@ BOT_ASSIGNMENT = { '--with-cpu=power8', '--enable-lock-elision', ]), + 'glibc-ppc64le-linux-p8-nomultiarch': bash('glibc-native.sh', [ + '--with-cpu=power8', + '--disable-multi-arch', + ]), + 'glibc-ppc64le-linux-p8-notunables': bash('glibc-native.sh', [ + '--with-cpu=power8', + '--disable-tunables', + ]), 'glibc-ppc-linux': bash('glibc-native.sh', [ '--build=powerpc-linux', 'CC=gcc -m32',