- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Question on Perl
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
08-25-2003 06:12 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2003 06:25 AM
08-25-2003 06:25 AM
Re: Question on Perl
Now see if it still fails.
Did you actually read the README's?
And did you set $SHLIB_PATH?
And now that you've done that, does it work?
FWIW A precompiled binary of perl-5.8.0 for 10.20 including DBI and prepared to build DBD-Oracle following the guidelines in above mentioned docs is available on my ITRC site: https://www.beepz.com/personal/merijn/ or http://www.cmve.net/~merijn/
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2003 06:59 AM
08-25-2003 06:59 AM
Re: Question on Perl
Yes, I did download Perl 5.8.0 from https://www.beepz.com/personal/merijn/#Downloads and tried simple DB connect via perl script. I get the following error:
--------------------------------------------------
install_driver(Oracle) failed: Can't locate DBD/Oracle.pm in @INC (@INC contains: /opt/TWWfsw/perl561/lib/5.6.1/PA-RISC1.1 /opt/TWWfsw/perl561/lib/5.6.1 /opt/TWWfsw/perl561p/lib/5.6.1/PA-RISC1.1 /opt/TWWfsw/perl561p/lib/5.6.1 /opt/TWWfsw/perl561p/lib /opt/TWWfsw/perl561p/vendor/lib/5.6.1/PA-RISC1.1 /opt/TWWfsw/perl561p/vendor/lib/5.6.1 /opt/TWWfsw/perl561p/vendor/lib .) at (eval 3) line 3.
Perhaps the DBD::Oracle perl module hasn't been fully installed,
or perhaps the capitalisation of 'Oracle' isn't right.
Available drivers: CSV, ExampleP, File, Pg, Proxy.
----------------------------------------
After this attempt i tried to compile DBD::ORACLE on HP-UX 10.20.
I am not good at programming. I am system admin trying to build some perl scripts for DB application.
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2003 07:13 AM
08-25-2003 07:13 AM
Solutiond3:/usr/local/pa11_32/lib 113 > nm libgcc.a | grep U_Qflt
_U_Qflt | |undef |code |
_U_Qflt | |undef |code |
_U_Qflt | 0|extern|entry |$CODE$
d3:/usr/local/pa11_32/lib 114 >
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2003 10:27 AM
08-25-2003 10:27 AM
Re: Question on Perl
Can you please tell me how to Include -lgcc?
I tried "perl Makefile.PL LDFLAGS="-lgcc", but i still get unresolved symbol error.
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2003 11:50 AM
08-25-2003 11:50 AM
Re: Question on Perl
should point you to (if you did use my port)
/usr/local/pa11_32/lib/libgcc.a
which is a symlink to even further down, but since there are so many places where we *need* libgcc.a, I've made it a symlink.
No assuming you used my version, and it is located on /usr/local/pa11_32/lib, add these to the Makefile's LDFLAGS:
-L/usr/local/pa11_32/lib -lgcc
And read http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x022718276953d61190040090279cd0f9,00.html to understand why you have to assign points
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2003 12:46 PM
08-25-2003 12:46 PM
Re: Question on Perl
I tried building statically and it works fine........
I have found out that the all unresolved symbol "make test" complaining about are present in static library /usr/lib/libpthread.a, but not present in shared lib /usr/lib/libpthread.sl.
I got the pthread from http://hpux.connect.org.uk/hppd/hpux/Gnu/pth-1.4.1/
Any suggestions in this regard??
Thank you very much for the help.
I have assigned the points.....I usually do it with out fail.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-26-2003 01:54 AM
08-26-2003 01:54 AM
Re: Question on Perl
Any success is good! :)
Enjoy, have FUN! H.Merijn (Willing to help with almost all Perl issues)