-
Notifications
You must be signed in to change notification settings - Fork 4
/
HINTS.irix
58 lines (47 loc) · 2.18 KB
/
HINTS.irix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
From - Wed Sep 22 10:59:33 1999
Received: from ns3.ge.com (ns3.ge.com [192.35.39.22])
by aaoepp2.aao.GOV.AU (8.9.1/8.9.1/AAO-1.1a) with ESMTP id UAA18253
for <[email protected]>; Tue, 21 Sep 1999 20:26:05 +1000 (EST)
From: [email protected]
Received: from thomas.ge.com (thomas-o.ge.com [10.47.28.21])
by ns3.ge.com (8.9.3/8.9.3) with ESMTP id GAA06458
for <[email protected]>; Tue, 21 Sep 1999 06:26:46 -0400 (EDT)
Received: from nyschx06psge.ps.ge.com (nyschx06psge.ps.ge.com [3.159.84.11])
by thomas.ge.com (8.9.3/8.9.3) with ESMTP id GAA27441
for <[email protected]>; Tue, 21 Sep 1999 06:26:46 -0400 (EDT)
Received: by nyschx06psge.ps.ge.com with Internet Mail Service (5.5.2448.0)
id <TJVLPMRW>; Tue, 21 Sep 1999 06:17:03 -0400
Message-ID: <[email protected]>
Subject: RE: Problem running pgperl on IRIX 6.5.3
Date: Tue, 21 Sep 1999 06:17:17 -0400
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2448.0)
Content-Type: text/plain;
charset="iso-8859-1"
Content-Length: 1068
Status: O
X-Mozilla-Status: 8011
X-Mozilla-Status2: 00000000
X-UIDL: 3545b6f100003adb
Karl,
Thanks for the response. I've managed to resolve the problem, after some
troubleshooting noting that in the installation instructions for PGPLOT (the
non-Perl, core package) the method for creating the shared library
libcpgplot.so is not entirely correct. They used:
ld -shared -o libcpgplot.so --whole_archive libcpgplot.a
Well, the problem is that the objects in libcpgplot.a reference objects in
libpgplot.a, so one needs to link them together. What I did under IRIX
6.5.3 is:
ld -shared -n32 -all libcpgplot.a -o libcpgplot.so -none libpgplot.a
Also, I had to recompile the core PGPLOT package with the -n32 option, as
the Perl PGPLOT package does; otherwise, it defaults to -o32 compilation and
the result is improper linking to libraries.
--john
-----Original Message-----
From: Karl Glazebrook [mailto:[email protected]]
Sent: Tuesday, September 21, 1999 12:37 AM
To: John Sasso
Subject: Re: Problem running pgperl on IRIX 6.5.3
Looks to me like it is not linking vs cpgplot correctly
send me the output of 'perl Makefile.PL; make' ?