<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>255933</bug_id>
          
          <creation_ts>2023-04-25 09:54:47 -0700</creation_ts>
          <short_desc>REGRESSION(263322@main): Cannot build ANGLE due to missing declaration of uint8_t</short_desc>
          <delta_ts>2023-04-25 10:37:30 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>ANGLE</component>
          <version>WebKit Nightly Build</version>
          <rep_platform>PC</rep_platform>
          <op_sys>Linux</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>FIXED</resolution>
          
          <see_also>https://bugs.webkit.org/show_bug.cgi?id=254975</see_also>
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>InRadar</keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Michael Catanzaro">mcatanzaro</reporter>
          <assigned_to name="Michael Catanzaro">mcatanzaro</assigned_to>
          <cc>dino</cc>
    
    <cc>kbr</cc>
    
    <cc>kkinnunen</cc>
    
    <cc>mcatanzaro</cc>
    
    <cc>webkit-bug-importer</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>1951092</commentid>
    <comment_count>0</comment_count>
    <who name="Michael Catanzaro">mcatanzaro</who>
    <bug_when>2023-04-25 09:54:47 -0700</bug_when>
    <thetext>This looks very similar to bug #250689, but it&apos;s something new:

In file included from /home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:5:
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.h:68:16: error: use of undeclared identifier &apos;uint8_t&apos;
    std::array&lt;uint8_t, kSHA1Length&gt; DigestAsArray() const;
               ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.h:74:5: error: unknown type name &apos;uint32_t&apos;
    uint32_t A, B, C, D, E;
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.h:76:5: error: unknown type name &apos;uint32_t&apos;
    uint32_t H[5];
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.h:80:9: error: unknown type name &apos;uint32_t&apos;
        uint32_t W[80];
        ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.h:81:9: error: unknown type name &apos;uint8_t&apos;
        uint8_t M[64];
        ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.h:84:5: error: unknown type name &apos;uint32_t&apos;
    uint32_t cursor;
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.h:85:5: error: unknown type name &apos;uint64_t&apos;
    uint64_t l;
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:96:9: error: use of undeclared identifier &apos;M&apos;
        M[cursor++] = *d++;
        ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:105:5: error: use of undeclared identifier &apos;M&apos;
    M[cursor++] = 0x80;
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:111:13: error: use of undeclared identifier &apos;M&apos;
            M[cursor++] = 0;
            ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:117:9: error: use of undeclared identifier &apos;M&apos;
        M[cursor++] = 0;
        ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:119:5: error: use of undeclared identifier &apos;M&apos;
    M[cursor++] = (l &gt;&gt; 56) &amp; 0xff;
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:120:5: error: use of undeclared identifier &apos;M&apos;
    M[cursor++] = (l &gt;&gt; 48) &amp; 0xff;
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:121:5: error: use of undeclared identifier &apos;M&apos;
    M[cursor++] = (l &gt;&gt; 40) &amp; 0xff;
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:122:5: error: use of undeclared identifier &apos;M&apos;
    M[cursor++] = (l &gt;&gt; 32) &amp; 0xff;
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:123:5: error: use of undeclared identifier &apos;M&apos;
    M[cursor++] = (l &gt;&gt; 24) &amp; 0xff;
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:124:5: error: use of undeclared identifier &apos;M&apos;
    M[cursor++] = (l &gt;&gt; 16) &amp; 0xff;
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:125:5: error: use of undeclared identifier &apos;M&apos;
    M[cursor++] = (l &gt;&gt; 8) &amp; 0xff;
    ^
/home/mcatanzaro/Projects/WebKit/Source/ThirdParty/ANGLE/src/common/base/anglebase/sha1.cc:126:5: error: use of undeclared identifier &apos;M&apos;
    M[cursor++] = l &amp; 0xff;
    ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1951093</commentid>
    <comment_count>1</comment_count>
    <who name="Michael Catanzaro">mcatanzaro</who>
    <bug_when>2023-04-25 09:56:38 -0700</bug_when>
    <thetext>Pull request: https://github.com/WebKit/WebKit/pull/13154</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1951096</commentid>
    <comment_count>2</comment_count>
    <who name="Michael Catanzaro">mcatanzaro</who>
    <bug_when>2023-04-25 10:05:56 -0700</bug_when>
    <thetext>Upstream issue report: https://bugs.chromium.org/p/angleproject/issues/detail?id=8144</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1951110</commentid>
    <comment_count>3</comment_count>
    <who name="EWS">ews-feeder</who>
    <bug_when>2023-04-25 10:35:57 -0700</bug_when>
    <thetext>Committed 263383@main (8b65ac68c424): &lt;https://commits.webkit.org/263383@main&gt;

Reviewed commits have been landed. Closing PR #13154 and removing active labels.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1951111</commentid>
    <comment_count>4</comment_count>
    <who name="Radar WebKit Bug Importer">webkit-bug-importer</who>
    <bug_when>2023-04-25 10:37:30 -0700</bug_when>
    <thetext>&lt;rdar://problem/108511369&gt;</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>