Changeset 237047 in webkit for trunk/Source/JavaScriptCore/ChangeLog
- Timestamp:
- Oct 11, 2018, 2:22:40 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r237042 r237047 1 2018-10-11 Keith Rollin <[email protected]> 2 3 CURRENT_ARCH should not be used in Run Script phase. 4 https://bugs.webkit.org/show_bug.cgi?id=190407 5 <rdar://problem/45133556> 6 7 Reviewed by Alexey Proskuryakov. 8 9 CURRENT_ARCH is used in a number of Xcode Run Script phases. However, 10 CURRENT_ARCH is not well-defined during this phase (and may even have 11 the value "undefined") since this phase is run just once per build 12 rather than once per supported architecture. Migrate away from 13 CURRENT_ARCH in favor of ARCHS, either by iterating over ARCHS and 14 performing an operation for each value, or by picking the first entry 15 in ARCHS and using that as a representative value. 16 17 * JavaScriptCore.xcodeproj/project.pbxproj: Store 18 LLIntDesiredOffsets.h into a directory with a name based on ARCHS 19 rather than CURRENT_ARCH. 20 1 21 2018-10-10 Mark Lam <[email protected]> 2 22
Note:
See TracChangeset
for help on using the changeset viewer.