Skip to content

Commit f1862e4

Browse files
authored
build: fix Python platform architecture tag for armv7l (openvinotoolkit#24772)
On arm32 (armv7), the platform tag should be `armv7l` as per https://peps.python.org/pep-0599/
1 parent df6a258 commit f1862e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bindings/python/wheel/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ macro(_ov_platform_arch)
2424
elseif(UNIVERSAL2)
2525
set(_arch "universal2")
2626
elseif(ARM)
27-
set(_arch "armvl7")
27+
set(_arch "armv7l")
2828
elseif(X86_64)
2929
set(_arch "x86_64")
3030
elseif(X86)

0 commit comments

Comments
 (0)