Changeset 293295 in webkit
- Timestamp:
- Apr 23, 2022, 2:47:00 PM (4 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/filters/software/FEGaussianBlurSoftwareApplier.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r293293 r293295 1 2022-04-23 Justin Michaud <justin_michaud@apple.com> 2 3 Fix build error caused by LTO + Unified Sources 4 https://bugs.webkit.org/show_bug.cgi?id=239679 5 6 Reviewed by Alex Christensen. 7 8 This hopefully fixes the following build error: 9 Undefined symbols for architecture x86_64: 10 "JSC::GenericTypedArrayView<JSC::Uint8ClampedAdaptor>::tryCreateUninitialized(unsigned long)", referenced from: 11 WebCore::FEGaussianBlurSoftwareApplier::apply(WebCore::Filter const&, WTF::Vector<WTF::Ref<WebCore::FilterImage, WTF::RawPtrTraits<WebCore::FilterImage> >, 0ul, WTF::CrashOnOverflow, 16ul, WTF::FastMalloc> const&, WebCore::FilterImage&) const in lto.o 12 ld: symbol(s) not found for architecture x86_64 13 14 * platform/graphics/filters/software/FEGaussianBlurSoftwareApplier.cpp: 15 1 16 2022-04-23 Alan Bujtas <zalan@apple.com> 2 17 -
trunk/Source/WebCore/platform/graphics/filters/software/FEGaussianBlurSoftwareApplier.cpp
r288559 r293295 34 34 #include "ImageBuffer.h" 35 35 #include "PixelBuffer.h" 36 #include <JavaScriptCore/TypedArrayInlines.h> 36 37 #include <wtf/MathExtras.h> 37 38 … … 39 40 #include <Accelerate/Accelerate.h> 40 41 #else 41 #include <JavaScriptCore/TypedArrayInlines.h>42 42 #include <wtf/ParallelJobs.h> 43 43 #endif
Note:
See TracChangeset
for help on using the changeset viewer.