You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running into an issue when attempting to compile Polycode from source. Specifically, the script for downloading and installing the Box2D dependency seems to use an invalid URL.
Here is a portion of the build output:
Scanning dependencies of target box2d
[ 9%] Creating directories for 'box2d'
[ 10%] Performing download step (download, verify and extract) for 'box2d'
-- downloading...
src='http://box2d.googlecode.com/files/Box2D_v2.1.2.zip'
dst='/home/andrew/Downloads/Polycode-master/Dependencies/Downloads/Box2D_v2.1.2.zip'
timeout='none'
CMake Error at box2d-stamp/download-box2d.cmake:9 (file):
file DOWNLOAD HASH mismatch
for file: [/home/andrew/Downloads/Polycode-master/Dependencies/Downloads/Box2D_v2.1.2.zip]
expected hash: [59d142cd8d4d73e8832c7b67591f590c]
actual hash: [d41d8cd98f00b204e9800998ecf8427e]
I am running 64-bit Ubuntu:
4.2.0-27-generic #32~14.04.1-Ubuntu SMP Fri Jan 22 15:32:27 UTC 2016 i686 i686 i686 GNU/Linux
I've attached the full output of the build script "BuildLinux.sh" to this post. I also attempted building the dependencies separately using cmake, as described in the README.md file. I ran into the same issue. Perhaps I just need to update the URL and MD5 hash for Box2D 2.1.2 in the build script? I'm also curious to see if anyone else has had this issue recently. build_log.txt
The text was updated successfully, but these errors were encountered:
Since the BuildLinux.sh script failed at the Box2D download verification, I just had to copy the zip file to the "Dependencies/Downloads" folder. I confirmed the MD5 hash is the same.
A better fix would be for the files in "Dependencies/Build/Debug/box2d/src/box2d-stamp" be updated to use the valid URL. I'm a novice at Git, so I don't want to mess anything up by pushing a change to the Polycode repo. Perhaps someone with more experience could make this update?
I am running into an issue when attempting to compile Polycode from source. Specifically, the script for downloading and installing the Box2D dependency seems to use an invalid URL.
Here is a portion of the build output:
Scanning dependencies of target box2d
[ 9%] Creating directories for 'box2d'
[ 10%] Performing download step (download, verify and extract) for 'box2d'
-- downloading...
src='http://box2d.googlecode.com/files/Box2D_v2.1.2.zip'
dst='/home/andrew/Downloads/Polycode-master/Dependencies/Downloads/Box2D_v2.1.2.zip'
timeout='none'
CMake Error at box2d-stamp/download-box2d.cmake:9 (file):
file DOWNLOAD HASH mismatch
make[2]: *** [box2d/src/box2d-stamp/box2d-download] Error 1
make[1]: *** [CMakeFiles/box2d.dir/all] Error 2
make: *** [all] Error 2
I am running 64-bit Ubuntu:
4.2.0-27-generic #32~14.04.1-Ubuntu SMP Fri Jan 22 15:32:27 UTC 2016 i686 i686 i686 GNU/Linux
I've attached the full output of the build script "BuildLinux.sh" to this post. I also attempted building the dependencies separately using cmake, as described in the README.md file. I ran into the same issue. Perhaps I just need to update the URL and MD5 hash for Box2D 2.1.2 in the build script? I'm also curious to see if anyone else has had this issue recently.
build_log.txt
The text was updated successfully, but these errors were encountered: