Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmake/defaults/CYCOMMON.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@ ENDIF()

# gc https://github.com/ivmai/bdwgc
SET(RV_DEPS_GC_VERSION
"8.2.2"
"8.2.12"
)
SET(RV_DEPS_GC_DOWNLOAD_HASH
"2ca38d05e1026b3426cf6c24ca3a7787"
"5e7c74f8bd57f64d3f86673ff3c17230"
)

# glew https://github.com/nigels-com/glew
Expand Down
4 changes: 2 additions & 2 deletions cmake/dependencies/gc.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ PROCESSORCOUNT(_cpu_count)
RV_CREATE_STANDARD_DEPS_VARIABLES("RV_DEPS_GC" "${RV_DEPS_GC_VERSION}" "" "")

SET(_download_url
"https://github.com/ivmai/bdwgc/archive/refs/tags/v${_version}.zip"
"https://github.com/ivmai/bdwgc/archive/refs/tags/v${_version}.tar.gz"
)
SET(_download_hash
${RV_DEPS_GC_DOWNLOAD_HASH}
Expand Down Expand Up @@ -94,7 +94,7 @@ ENDIF()

EXTERNALPROJECT_ADD(
${_target}
DOWNLOAD_NAME ${_target}_${_version}.zip
DOWNLOAD_NAME ${_target}_${_version}.tar.gz
DOWNLOAD_DIR ${RV_DEPS_DOWNLOAD_DIR}
DOWNLOAD_EXTRACT_TIMESTAMP TRUE
SOURCE_DIR ${RV_DEPS_BASE_DIR}/${_target}/src
Expand Down