Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion cmake/external/onnxruntime_external_deps.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,11 @@ if (onnxruntime_USE_WEBGPU)
# - (private) Fix compatibility issues with Safari. Contains the following changes:
# - Polyfill for `device.AdapterInfo` (returns `undefined` in Safari v26.0)
#
${Patch_EXECUTABLE} --binary --ignore-whitespace -p1 < ${PROJECT_SOURCE_DIR}/patches/dawn/safari_polyfill.patch)
${Patch_EXECUTABLE} --binary --ignore-whitespace -p1 < ${PROJECT_SOURCE_DIR}/patches/dawn/safari_polyfill.patch &&

# Remove the test folder to speed up potential file scan operations (70k+ files not needed for build).
# Using <SOURCE_DIR> token ensures the correct absolute path regardless of working directory.
${CMAKE_COMMAND} -E rm -rf <SOURCE_DIR>/test)

onnxruntime_fetchcontent_declare(
dawn
Expand Down
Loading