Skip to content

Commit 634916c

Browse files
authored
Update ORT_ARCH for Mac OS X (#936)
As of v1.10.0 of the ONNX Runtime, Microsoft changed the string associated with the processor architecture in the name of the Mac OS X release tarball. The variable ORT_ARCH now correctly specifies x86_64 instead of x64, allowing Mac OS X users to retrieve the necessary dependency.
1 parent 0b823b9 commit 634916c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

get_deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ if [[ $OS == linux ]]; then
234234
fi
235235
elif [[ $OS == macos ]]; then
236236
ORT_OS=osx
237-
ORT_ARCH=x64
237+
ORT_ARCH=x86_64
238238
ORT_BUILD=""
239239
ORT_URL_BASE=https://github.com/microsoft/onnxruntime/releases/download/v${ORT_VERSION}
240240
fi

0 commit comments

Comments
 (0)