WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
177640
JSC generate unified sources doesn't need to run during installhdrs.
https://bugs.webkit.org/show_bug.cgi?id=177640
Summary
JSC generate unified sources doesn't need to run during installhdrs.
Keith Miller
Reported
2017-09-28 20:48:58 PDT
JSC generate unified sources doesn't need to run during installhdrs.
Attachments
Patch
(2.62 KB, patch)
2017-09-28 20:53 PDT
,
Keith Miller
no flags
Details
Formatted Diff
Diff
Patch
(2.50 KB, patch)
2017-09-28 21:45 PDT
,
Keith Miller
no flags
Details
Formatted Diff
Diff
Show Obsolete
(1)
View All
Add attachment
proposed patch, testcase, etc.
Keith Miller
Comment 1
2017-09-28 20:53:00 PDT
Created
attachment 322163
[details]
Patch
mitz
Comment 2
2017-09-28 20:59:07 PDT
Comment on
attachment 322163
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=322163&action=review
> Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj:10307 > + INFOPLIST_FILE = "Generate Unified Sources-Info.plist";
LOL. This build setting is a path to a file in the source tree. I don’t think there’s a file with either name. But it doesn't matter, because this build setting is meaningless for a target that doesn't build a bundle or a binary with an embedded Info.plist.
> Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj:10338 > + INSTALLHDRS_SCRIPT_PHASE = NO;
This quadruplication is one of the reasons why we don’t define build settings in the .pbxproj file, but rather in .xcconfig files. You may be able to get away with simply changing the Generate Unified Sources target’s configuration file to “None” in the project editor, because the default for INSTALLHDRS_SCRIPT_PHASE is NO. If that doesn’t work, you’ll need to create a new .xcconfig file for this target and add any required settings to it.
Keith Miller
Comment 3
2017-09-28 21:34:24 PDT
Comment on
attachment 322163
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=322163&action=review
>> Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj:10307 >> + INFOPLIST_FILE = "Generate Unified Sources-Info.plist"; > > LOL. This build setting is a path to a file in the source tree. I don’t think there’s a file with either name. But it doesn't matter, because this build setting is meaningless for a target that doesn't build a bundle or a binary with an embedded Info.plist.
OHH, I didn't realize that this list of settings was just custom values. Yeah there none of the settings here are needed. TBH, it shouldn't even be different regardless of the build "configuration".
>> Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj:10338 >> + INSTALLHDRS_SCRIPT_PHASE = NO; > > This quadruplication is one of the reasons why we don’t define build settings in the .pbxproj file, but rather in .xcconfig files. You may be able to get away with simply changing the Generate Unified Sources target’s configuration file to “None” in the project editor, because the default for INSTALLHDRS_SCRIPT_PHASE is NO. If that doesn’t work, you’ll need to create a new .xcconfig file for this target and add any required settings to it.
Yeah, setting it to None seems to have worked. I also got rid of the INFOPLIST_FILE setting. For whatever reason you can't get rid of the PRODUCT_NAME setting. I don't fully understand the implications of its existence but w/e. For JSC it doesn't matter since we don't care about the FEATURE_DEFINES value in the JavaScriptCore.xcconfig but in WebCore the unified source bundler script will. It doesn't really seem worth it to redefine all the values in the xcconfig file just so that we can save 4 lines here but idk how to Xcode.
mitz
Comment 4
2017-09-28 21:38:59 PDT
(In reply to Keith Miller from
comment #3
)
> Comment on
attachment 322163
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=322163&action=review
> > >> Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj:10307 > >> + INFOPLIST_FILE = "Generate Unified Sources-Info.plist"; > > > > LOL. This build setting is a path to a file in the source tree. I don’t think there’s a file with either name. But it doesn't matter, because this build setting is meaningless for a target that doesn't build a bundle or a binary with an embedded Info.plist. > > OHH, I didn't realize that this list of settings was just custom values. > Yeah there none of the settings here are needed. TBH, it shouldn't even be > different regardless of the build "configuration". > > >> Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj:10338 > >> + INSTALLHDRS_SCRIPT_PHASE = NO; > > > > This quadruplication is one of the reasons why we don’t define build settings in the .pbxproj file, but rather in .xcconfig files. You may be able to get away with simply changing the Generate Unified Sources target’s configuration file to “None” in the project editor, because the default for INSTALLHDRS_SCRIPT_PHASE is NO. If that doesn’t work, you’ll need to create a new .xcconfig file for this target and add any required settings to it. > > Yeah, setting it to None seems to have worked. I also got rid of the > INFOPLIST_FILE setting. For whatever reason you can't get rid of the > PRODUCT_NAME setting. I don't fully understand the implications of its > existence but w/e. For JSC it doesn't matter since we don't care about the > FEATURE_DEFINES value in the JavaScriptCore.xcconfig but in WebCore the > unified source bundler script will. It doesn't really seem worth it to > redefine all the values in the xcconfig file just so that we can save 4 > lines here but idk how to Xcode.
You won’t need to “redefine all the values” in any case, because you can use #include and because within the same level in the build setting hierarchy, the last definition of any build setting prevails.
Keith Miller
Comment 5
2017-09-28 21:45:00 PDT
Created
attachment 322167
[details]
Patch
Keith Miller
Comment 6
2017-09-28 21:46:02 PDT
(In reply to mitz from
comment #4
) >
> You won’t need to “redefine all the values” in any case, because you can use > #include and because within the same level in the build setting hierarchy, > the last definition of any build setting prevails.
Ah, good point.
mitz
Comment 7
2017-10-05 19:32:56 PDT
Would be good to land the patch soon, as it resolves some problems in Apple’s internal build system.
mitz
Comment 8
2017-10-05 19:33:30 PDT
(In reply to mitz from
comment #7
)
> Would be good to land the patch soon, as it resolves some problems in > Apple’s internal build system.
Never mind, I overlooked the commit-queue flag.
WebKit Commit Bot
Comment 9
2017-10-05 20:02:00 PDT
Comment on
attachment 322167
[details]
Patch Clearing flags on attachment: 322167 Committed
r222954
: <
http://trac.webkit.org/changeset/222954
>
WebKit Commit Bot
Comment 10
2017-10-05 20:02:02 PDT
All reviewed patches have been landed. Closing bug.
Radar WebKit Bug Importer
Comment 11
2017-10-05 20:03:30 PDT
<
rdar://problem/34849704
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug