Skip to content

Commit

Permalink
fix for rt#114240 prefer 64bit cmake on x86_64
Browse files Browse the repository at this point in the history
As reported by SREZIC, 64bit linux may not support 32 bit binaries.
This is probably true on other systems.  The 64bit version is
probably preferrable anyway.
  • Loading branch information
plicease committed May 9, 2016
1 parent ce5edd5 commit 0953a29
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Changes
@@ -1,5 +1,7 @@
Version history for Perl module Alien::CMake

- Prefer 64bit cmake on Linux x86_64 (rt#114240)

0.07 02/13/2016
- Add bin_dir method for Alien::Base compatibility

Expand Down
8 changes: 8 additions & 0 deletions inc/My/Utility.pm
Expand Up @@ -26,6 +26,14 @@ my $prebuilt_binaries = [
arch_re => qr/^MSWin32-x(86|64)-multi-thread(-64int)?$/,
os_re => qr/^MSWin32$/
},
{
title => "Binaries Linux/x86_64 CMake-3.3.0",
url => 'http://cmake.org/files/v3.3/cmake-3.3.0-Linux-x86_64.tar.gz',
version => '3.3.0',
sha1sum => '46efa5e3921c1956477121e1531e023292325c31',
arch_re => qr/^x86_64-/,
os_re => qr/^linux$/
},
{
title => "Binaries Linux/i386 CMake-3.3.0",
url => 'http://www.cmake.org/files/v3.3/cmake-3.3.0-Linux-i386.tar.gz',
Expand Down

0 comments on commit 0953a29

Please sign in to comment.