<?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>212587</bug_id>
          
          <creation_ts>2020-05-31 23:17:08 -0700</creation_ts>
          <short_desc>[Cocoa] Bug 212420 breaks XCBuild</short_desc>
          <delta_ts>2020-08-05 15:02:11 -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>Tools / Tests</component>
          <version>WebKit Nightly Build</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>RESOLVED</bug_status>
          <resolution>WONTFIX</resolution>
          
          <see_also>https://bugs.webkit.org/show_bug.cgi?id=212542</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="Keith Rollin">krollin</reporter>
          <assigned_to name="Keith Rollin">krollin</assigned_to>
          <cc>ap</cc>
    
    <cc>krollin</cc>
    
    <cc>webkit-bug-importer</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>1657834</commentid>
    <comment_count>0</comment_count>
    <who name="Keith Rollin">krollin</who>
    <bug_when>2020-05-31 23:17:08 -0700</bug_when>
    <thetext>Bug 212420 breaks XCBuild. The problem is that the .xcfilelist for the generated unified sources is removed. This file is used not only to determine dependencies (something that was addressed by the addition of the UnifiedSourceBundlesTimeStamp.txt file), but also to notify XCBuild how and when generated files are created. Without this file, XCBuild doesn&apos;t know where the UnifiedSource*.* files are coming from and it fails when it tries to compile them.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1657835</commentid>
    <comment_count>1</comment_count>
    <who name="Radar WebKit Bug Importer">webkit-bug-importer</who>
    <bug_when>2020-05-31 23:17:20 -0700</bug_when>
    <thetext>&lt;rdar://problem/63818686&gt;</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1657892</commentid>
    <comment_count>2</comment_count>
    <who name="Darin Adler">darin</who>
    <bug_when>2020-06-01 07:17:04 -0700</bug_when>
    <thetext>How does this work for all the other derived sources? We should be able to fix this by making it the same as the rest.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1657907</commentid>
    <comment_count>3</comment_count>
    <who name="Darin Adler">darin</who>
    <bug_when>2020-06-01 08:08:39 -0700</bug_when>
    <thetext>Keith, I’m happy to fix this so that the file list contains the list of unified source files. If you can help me figure out the strategy, I’ll do it.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1657915</commentid>
    <comment_count>4</comment_count>
    <who name="Darin Adler">darin</who>
    <bug_when>2020-06-01 08:19:59 -0700</bug_when>
    <thetext>I’m having trouble getting used to the overall strategy here. Inelegant always having to regenerate the file lists in a separate pass every time we build. Seems like a recipe for slow builds to process all the dependencies twice, once to build and once to check/rebuild xcfilelist files.

But given the strategy, seems like somehow I am going to have to get --generate-xcfilelists and --output-xcfilelist-path passed in to the generate-unified-sources.sh script so it can build the list of files. Then either communicate this directly to the Python generator class, or just add these files all as dependencies in make so that it will show up in the output of &quot;make -d&quot;.

Too bad I’ve never programmed in Ruby or Python before!</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1657917</commentid>
    <comment_count>5</comment_count>
    <who name="Darin Adler">darin</who>
    <bug_when>2020-06-01 08:21:36 -0700</bug_when>
    <thetext>It would be fine to revert r262310 until we figure out a way to deal with this.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1658012</commentid>
    <comment_count>6</comment_count>
    <who name="Darin Adler">darin</who>
    <bug_when>2020-06-01 13:03:17 -0700</bug_when>
    <thetext>Keith, do you have a preference for what we do next?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1658014</commentid>
    <comment_count>7</comment_count>
    <who name="Darin Adler">darin</who>
    <bug_when>2020-06-01 13:03:49 -0700</bug_when>
    <thetext>I guess you assigned this bug to me, so you want me to fix it, but do you have a preferred approach?</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1658094</commentid>
    <comment_count>8</comment_count>
    <who name="Keith Rollin">krollin</who>
    <bug_when>2020-06-01 15:32:10 -0700</bug_when>
    <thetext>This is low priority for now, until we determine an approach.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1678099</commentid>
    <comment_count>9</comment_count>
    <who name="Keith Rollin">krollin</who>
    <bug_when>2020-08-05 15:02:11 -0700</bug_when>
    <thetext>Bug 212420 has been addressed with a different approach.

The larger issue -- that of having a separate pass to ensure that the .xcfilelist files are up-to-date -- is covered in Radar 48250806.

Therefore, nothing more to do here.</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>