- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: 10.20 codes on 11.0
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
02-12-2003 12:26 PM
02-12-2003 12:26 PM
10.20 codes on 11.0
We are planning to run 10.20 (32 bit) codes on 11.0 running 64 bit OS. What would be the potential issues? Please advise.
Thanks
David.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2003 12:29 PM
02-12-2003 12:29 PM
Re: 10.20 codes on 11.0
If you get a prebuild binary of perl for example from 10.20, you will not be able to compile new modules that use a C compiler without jumping through some very nasty loops. If you *do* have dynamic loading applications (Oracle is one of those too), please consider to recompile/relink those before using them in a production environment.
And ..... test the vital applications in the new environment before using them in production.
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 06:26 AM
02-14-2003 06:26 AM
Re: 10.20 codes on 11.0
An example would be kernel thread support, which did not exist at 10.20. In fact, if your app uses threads, you might want to consider porting.
Check out the /usr/share/doc/11.00RelNotes for apis that have been deprecated or discontinued.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 06:52 AM
02-14-2003 06:52 AM
Re: 10.20 codes on 11.0
OTOH you are right that /if/ threads were used (either through the pth package or the HP DCE package), you're best of with recompiling anyway.
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 07:10 AM
02-14-2003 07:10 AM
Re: 10.20 codes on 11.0
In theory it should but in practice not always.
I 've been porting software on HPUX for the last few years, started with 10.10, 10.20, 11.00, 11.20 and now 11.22.
The area you should watch for as well as the one that Rick and Merijin mentioned are, thread. If your program is using thread, you will most probably will have problem when you use that on 11.00. It depends what thread they use.
__Mehdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 07:10 AM
02-14-2003 07:10 AM
Re: 10.20 codes on 11.0
Some problems may arise with mixing either
32- and 64-bit objects and shared libraries,
involved in link-phase, when creating an exec.
In running phase - too.
This could result in a linker error message.
Objects and SL's for given applications
need to be ALL 32bits or All 64-bits.
In case of such problem, look for upgrading libraries /by related patches/.
Regards,Stan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 07:13 AM
02-14-2003 07:13 AM
Re: 10.20 codes on 11.0
Enjoy, have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2003 07:13 AM
02-14-2003 07:13 AM
Re: 10.20 codes on 11.0
__Mehdi