[Bioperl-l] can people with HP/Irix/Alpha confirm these reported problems with bioperl-1.0 ?
chris dagdigian
dag@sonsorol.org
Fri, 22 Mar 2002 16:19:23 -0500
This is a multi-part message in MIME format.
--------------010804070600030502080001
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
This is a troubling bug report. Can others confirm? I've had zero
trouble with OpenBSD and Linux but don't have easy access to Irix, HPUX
or Alpha systems. We may have gotten bitten by the huge size of our
distribution.
Actually, HP just donated a Itanium box to us so I'll have HPUX to work
on in a few days.
-Chris
--------------010804070600030502080001
Content-Type: message/rfc822;
name="[Bioperl-guts-l] Notification: incoming/1133"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="[Bioperl-guts-l] Notification: incoming/1133"
>From - Fri Mar 22 15:43:20 2002
X-Mozilla-Status2: 00000000
Return-Path: <bioperl-guts-l-admin@bioperl.org>
Received: from pw600a.bioperl.org (pw600a.bioperl.org [199.93.107.70])
by fedayi.sonsorol.org (8.11.0/8.11.0) with ESMTP id g2MKT9T00045
for <dag@fedayi.sonsorol.org>; Fri, 22 Mar 2002 15:29:09 -0500 (EST)
Received: from pw600a.bioperl.org (localhost [127.0.0.1])
by pw600a.bioperl.org (8.12.2/8.12.2) with ESMTP id g2MIWAkO005853;
Fri, 22 Mar 2002 13:32:10 -0500
Received: from localhost (localhost [127.0.0.1])
by pw600a.bioperl.org (8.12.2/8.12.2) with ESMTP id g2MIVPkO005815
for <bioperl-guts-l@bioperl.org>; Fri, 22 Mar 2002 13:31:25 -0500
Message-Id: <200203221831.g2MIVPkO005815@pw600a.bioperl.org>
From: bioperl-bugs@bioperl.org
To: bioperl-guts-l@bioperl.org
Subject: [Bioperl-guts-l] Notification: incoming/1133
Sender: bioperl-guts-l-admin@bioperl.org
Errors-To: bioperl-guts-l-admin@bioperl.org
X-BeenThere: bioperl-guts-l@bioperl.org
X-Mailman-Version: 2.0.6
Precedence: bulk
List-Help: <mailto:bioperl-guts-l-request@bioperl.org?subject=help>
List-Post: <mailto:bioperl-guts-l@bioperl.org>
List-Subscribe: <http://bioperl.org/mailman/listinfo/bioperl-guts-l>,
<mailto:bioperl-guts-l-request@bioperl.org?subject=subscribe>
List-Id: Bioperl internals & bug reports <bioperl-guts-l.bioperl.org>
List-Unsubscribe: <http://bioperl.org/mailman/listinfo/bioperl-guts-l>,
<mailto:bioperl-guts-l-request@bioperl.org?subject=unsubscribe>
List-Archive: <http://bioperl.org/pipermail/bioperl-guts-l/>
Date: Fri, 22 Mar 2002 13:31:25 -0500
JitterBug notification
new message incoming/1133
Message summary for PR#1133
From: batalov@gnf.org
Subject: bioperl-1.0 doesn't build
Date: Fri, 22 Mar 2002 13:31:24 -0500
0 replies 0 followups
====> ORIGINAL MESSAGE FOLLOWS <====
>From batalov@gnf.org Fri Mar 22 13:31:24 2002
Received: from localhost (localhost [127.0.0.1])
by pw600a.bioperl.org (8.12.2/8.12.2) with ESMTP id g2MIVOkO005811
for <bioperl-bugs@pw600a.bioperl.org>; Fri, 22 Mar 2002 13:31:24 -0500
Date: Fri, 22 Mar 2002 13:31:24 -0500
Message-Id: <200203221831.g2MIVOkO005811@pw600a.bioperl.org>
From: batalov@gnf.org
To: bioperl-bugs@bioperl.org
Subject: bioperl-1.0 doesn't build
Full_Name: Serge Batalov
Module: bioperl
Version: 1.0
PerlVer: 5.6.1
OS: IRIX,HP,DEC/Compaq-Alpha
Submission from: pat.gnf.org (63.196.132.64)
#> perl -MCPAN -e shell
#> ...install Bundle::...
#> install B/BI/BIRNEY/bioperl-1.0.tar.gz
fails in 'make' with 'Arg list too long' message
What happens is that a list of things to MakeMake is too long for the
command line (in "# --- MakeMaker pm_to_blib section")
For the reference, command-line length limit is not
a shell limit; it is built in kernel/libc.
It has to do with the execvp()
limit ARG_MAX, which is 4096 characters in POSIX,
but most systems have it inflated, to different extents.
Test it with
--------arg_max.c--------
#include <unistd.h>
main() {
printf("ARG_MAX = %ld\n This is the maximum length of the arguments to the
exec() family of functions\n",
sysconf(_SC_ARG_MAX));
exit(0);
}
--------
Linux is the second most generous (most systems tested show 64K).
It is topped only by SUN (tried 5.8), where it is 128K.
IRIX and DEC/Alpha have 20K limit.
HP -- just 8K.
It would be prudent to stick to the POSIX limit, and
split the pm_to_blib into pieces.
_______________________________________________
Bioperl-guts-l mailing list
Bioperl-guts-l@bioperl.org
http://bioperl.org/mailman/listinfo/bioperl-guts-l
--------------010804070600030502080001--