Skip to content

Commit

Permalink
Fix download hash and url for windows and linux
Browse files Browse the repository at this point in the history
  • Loading branch information
guillep committed May 4, 2023
1 parent 5ac34b1 commit ee2125f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/vmmaker.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ if(GENERATE_SOURCES)
message("Defining Windows VM to download for code generation")
set(VMMAKER_VM ${VMMAKER_DIR}/vm/PharoConsole.exe)
set(VM_URL https://files.pharo.org/vm/pharo-spur64-headless/Windows-x86_64/PharoVM-10.0.2-fdd3df06-Windows-x86_64-bin.zip)
set(VM_URL_HASH SHA256=fb5aa8c7adcc12830500933bf8fd1ab6ffb1ccfc534b4e0b0c9d23eecbe639e9)
set(VM_URL_HASH SHA256=add99433d51066392bf8295dbfc3eb8e0f6f2d1ba0454ce7e0dc6eb1a54a62fc)
elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND (${CMAKE_SYSTEM_PROCESSOR} MATCHES "aarch64"))
message("Defining Linux AARCH64 VM to download for code generation")
set(VMMAKER_VM ${VMMAKER_DIR}/vm/pharo)
set(VM_URL https://files.pharo.org/vm/pharo-spur64-headless/Linux-aarch64/PharoVM-10.0.2-fdd3df06-Linux-aarch64-bin.zip)
set(VM_URL https://files.pharo.org/vm/pharo-spur64-headless/Linux-aarch64/PharoVM-10.0.2-fdd3df0-Linux-aarch64-bin.zip)
set(VM_URL_HASH SHA256=2fe44aab3715f26378796bef835fc1bd51da0baa02aad3fee03610926e80a59f)
elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND (${CMAKE_SYSTEM_PROCESSOR} MATCHES "armv7l"))
message("Defining Linux ARM 32 VM to download for code generation")
Expand Down

0 comments on commit ee2125f

Please sign in to comment.