<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - THUMB2 support not correctly detected on Fedora with GCC 6.1."
   href="https://bugs.webkit.org/show_bug.cgi?id=159083#c2">Comment # 2</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - THUMB2 support not correctly detected on Fedora with GCC 6.1."
   href="https://bugs.webkit.org/show_bug.cgi?id=159083">bug 159083</a>
              from <span class="vcard"><a class="email" href="mailto:tpopela&#64;redhat.com" title="Tomas Popela &lt;tpopela&#64;redhat.com&gt;"> <span class="fn">Tomas Popela</span></a>
</span></b>
        <pre>Ok, the problem here is the detection of THUMB2 support. Our code is based on __thumb2__ or __thumb__ defines. This does work on Debian:

$ gcc -dM -E - &lt; /dev/null | grep -i thumb
#define __thumb2__ 1
#define __THUMB_INTERWORK__ 1
#define __thumb__ 1
#define __ARM_ARCH_ISA_THUMB 2
#define __THUMBEL__ 1

but does not on Fedora 24 with GCC 6.1. :

$ gcc -dM -E - &lt; /dev/null | grep -i thumb
#define __THUMB_INTERWORK__ 1
#define __ARM_ARCH_ISA_THUMB 2

as the previously mentions defines are not presented there.</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>