Skip to content

Commit

Permalink
Merge pull request #4849 from dnakamura/amd64
Browse files Browse the repository at this point in the history
CMake: recognize 'amd64' processor name
  • Loading branch information
rwy7 authored Feb 20, 2020
2 parents d95485c + a6268ec commit 1fed943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/modules/OmrDetectSystemInformation.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ macro(omr_detect_system_information)

set(OMR_TEMP_DATA_SIZE "unknown")

if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|AMD64")
if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|AMD64|amd64")
set(OMR_HOST_ARCH "x86")
set(OMR_ARCH_X86 ON)
set(OMR_ENV_LITTLE_ENDIAN ON)
Expand Down

0 comments on commit 1fed943

Please sign in to comment.