Add two new compilation options

Message ID 20180510043446.10811-2-igormtorrente@gmail.com
State New, archived
Headers

Commit Message

Igor Torrente May 10, 2018, 4:34 a.m. UTC
  From: Igor Torrente <igortorrente@outlook.com>

Add two new compilation options for Power 8 architecture.

---
 scripts/slave/buildbot_selector.py | 8 ++++++++
 1 file changed, 8 insertions(+)
  

Comments

Siddhesh Poyarekar May 10, 2018, 6:01 a.m. UTC | #1
On 05/10/2018 10:04 AM, Igor Torrente wrote:
> From: Igor Torrente <igortorrente@outlook.com>
> 
> Add two new compilation options for Power 8 architecture.

Thanks, before I commit this, can you please confirm that you've 
coordinated[1] with Tulio for login details to set up the slave?

Thanks,
Siddhesh

[1] https://sourceware.org/glibc/wiki/Buildbot
  
Siddhesh Poyarekar May 10, 2018, 6:03 a.m. UTC | #2
Sorry, I realized Tulio's contact details are not in there, I've cc'd 
him now.

Siddhesh

On 05/10/2018 11:31 AM, Siddhesh Poyarekar wrote:
> On 05/10/2018 10:04 AM, Igor Torrente wrote:
>> From: Igor Torrente <igortorrente@outlook.com>
>>
>> Add two new compilation options for Power 8 architecture.
> 
> Thanks, before I commit this, can you please confirm that you've 
> coordinated[1] with Tulio for login details to set up the slave?
> 
> Thanks,
> Siddhesh
> 
> [1] https://sourceware.org/glibc/wiki/Buildbot
  
Tulio Magno Quites Machado Filho May 10, 2018, 12:30 p.m. UTC | #3
Siddhesh Poyarekar <siddhesh@gotplt.org> writes:

> On 05/10/2018 10:04 AM, Igor Torrente wrote:
>> From: Igor Torrente <igortorrente@outlook.com>
>> 
>> Add two new compilation options for Power 8 architecture.
>
> Thanks, before I commit this, can you please confirm that you've 
> coordinated[1] with Tulio for login details to set up the slave?

We haven't yet, because these patches are not adding new slaves.
That's the next step.
Anyway Igor knows how to contact me.  :-)

Thanks!
  

Patch

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',