- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- C compiler error when trying to load Perl 5
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2009 10:42 AM
04-10-2009 10:42 AM
C compiler error when trying to load Perl 5
The install errors out stating "You need to find a working C compiler.
I did a
swlist -l product | grep Compiler
The output is below
CPS B.11.11 Compiler Parallel Support Library
Can I download a compiler or is it on a CD?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2009 10:50 AM
04-10-2009 10:50 AM
Re: C compiler error when trying to load Perl 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2009 10:59 AM
04-10-2009 10:59 AM
Re: C compiler error when trying to load Perl 5
You can load a pre-compiled Perl or build one from the source. If you choose to build one from the source, you will need either the HP-UX C compiler (not free) or the gcc (free) one.
The "bundled" C-compiler supplied without cost on HP-UX is useless for anything much more than simple kernel generation.
Perl can be obtained in binary form here:
http://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=PERL
(or):
http://mirrors.develooper.com/hpux/
As for the compilers, see:
http://h20392.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=B9007AA
...or for 'gcc' Merijn's site:
http://mirrors.develooper.com/hpux/downloads.html
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2009 11:14 AM
04-10-2009 11:14 AM
Re: C compiler error when trying to load Perl 5
I'm fairly new to the HP UX envirnoment.
I have downloaded the the PERL5.8
What do I need to do for the compiler?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2009 11:26 AM
04-10-2009 11:26 AM
Re: C compiler error when trying to load Perl 5
> I have downloaded the the PERL5.8
Fine. Source or binary. If a pre-compiled binary, then you don't need a C-compiler unless any modules you want to add require compilation. In that case, you will need the compiler (HP-UX or gcc) that matches what the Perl distribution was compiled with. 'perl -V:cc' will show that.
Regards!
...JRF...