in reply to Math:Bigint module install issue on win 7 32 bit

Hi nutcr0cker,

Math::BigInt should already be part of a standard Strawberry Perl distribution, you should be able to just use it.

Otherwise, please see How do I post a question effectively? and post a Short, Self Contained, Correct Example that reproduces the problem, as well as the exact error message.

Regards,
-- Hauke D

  • Comment on Re: Math:Bigint module install issue on win 7 32 bit

Replies are listed 'Best First'.
Re^2: Math:Bigint module install issue on win 7 32 bit
by nutcr0cker (Initiate) on May 11, 2016 at 06:41 UTC
    even a simple code causes perl.exe to crash
    use Math::BigInt; $ro = 0;
      I checked on my Active State 5.22 installation on Win XP 32 bit and BigInt is already there; code below works fine without installing anything. haukex says BigInt also comes with Strawberry 5.22. Most likely cause of your woes is a botched installation of something that you didn't even need to install! I would uninstall your Perl, then re-install a fresh copy. If BigInt is there, you are done. If not, then report back with exact details of what you are doing and messages that you see.
      #!usr/bin/perl use warnings; use strict; use Math::BigInt; my $ro=0; print $ro;