Skip to content

Commit

Permalink
build: fix Python platform architecture tag for armv7l (openvinotoolk…
Browse files Browse the repository at this point in the history
…it#24772)

On arm32 (armv7), the platform tag should be `armv7l` as per
https://peps.python.org/pep-0599/
  • Loading branch information
bjia56 authored Jun 4, 2024
1 parent df6a258 commit f1862e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bindings/python/wheel/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ macro(_ov_platform_arch)
elseif(UNIVERSAL2)
set(_arch "universal2")
elseif(ARM)
set(_arch "armvl7")
set(_arch "armv7l")
elseif(X86_64)
set(_arch "x86_64")
elseif(X86)
Expand Down

0 comments on commit f1862e4

Please sign in to comment.