Fix warning about duplicate LowLevelInterpreter.asm sources in JavascriptCore Xcode project. Seen here: <https://ews-build.webkit.org/#/builders/43/builds/30473/steps/12/logs/warnings__21_> ``` warning: Skipping duplicate build file in Compile Sources build phase: /Volumes/Data/worker/macOS-BigSur-Release-Build-EWS/build/Source/JavaScriptCore/llint/LowLevelInterpreter.asm (in target 'JSCLLIntSettingsExtractor' from project 'JavaScriptCore') warning: Skipping duplicate build file in Compile Sources build phase: /Volumes/Data/worker/macOS-BigSur-Release-Build-EWS/build/Source/JavaScriptCore/llint/LowLevelInterpreter.asm (in target 'JSCLLIntOffsetsExtractor' from project 'JavaScriptCore') ``` For this EWS build: <https://ews-build.webkit.org/#/builders/43/builds/30473>
<rdar://problem/102608601>
Here's how I fixed the duplicate lines: ``` $ uniq < Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj | diff -u Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj - | patch -p1 Source/JavaScriptCore/JavaScriptCore.xcodeproj/project.pbxproj ```
Pull request: https://github.com/WebKit/WebKit/pull/6740
Committed 256957@main (94b4ca37a975): <https://commits.webkit.org/256957@main> Reviewed commits have been landed. Closing PR #6740 and removing active labels.