Skip to content

Commit

Permalink
Add missing x86 check in CMakeLists (#1445)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstebila authored Apr 28, 2023
1 parent 9cf9e10 commit d5be452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|amd64|AMD64")
if(${OQS_DIST_BUILD})
set(OQS_DIST_X86_64_BUILD ON)
endif()
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "i586|i686")
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "x86|i586|i686")
set(ARCH "i586")
set(ARCH_X86 ON)
if(${OQS_DIST_BUILD})
Expand Down

0 comments on commit d5be452

Please # to comment.