- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- PA-RISC1.1 vs PA-RISC2 .0 object generation from a...
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
03-29-2005 07:10 AM
03-29-2005 07:10 AM
PA-RISC1.1 vs PA-RISC2 .0 object generation from ansi cc
Both of these are PA-RISC2.0, correct?
Yet a simple c program defaults to 1.1 on the
B2000 and 2.0 on the b2600. I cann't find where
this is being set! Does any one know where to
set it as a system wide default?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2005 07:54 AM
03-29-2005 07:54 AM
Re: PA-RISC1.1 vs PA-RISC2 .0 object generation from ansi cc
This is controlled by the +DA (destination architecture) compiler flag. Using the +DA2.0 flag will specify PA-RISC 2.0 code generation. +DA2.0W will specify 64-bit code generation.
hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2005 08:35 AM
03-29-2005 08:35 AM
Re: PA-RISC1.1 vs PA-RISC2 .0 object generation from ansi cc
the various ."shells" files and there system
defaults but could find and thing.
Since the B2600 is the CM machine this is a problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2005 08:50 AM
03-29-2005 08:50 AM
Re: PA-RISC1.1 vs PA-RISC2 .0 object generation from ansi cc
One option would be to set and export CCOPTS in /etc/profile.
e.g.
export CCOPTS=+DA2.0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-29-2005 09:57 PM
03-29-2005 09:57 PM
Re: PA-RISC1.1 vs PA-RISC2 .0 object generation from ansi cc
model. Model tells me 9000/785/B2000 and
9000/785/B2600 . 785 in sched.models is the same on both systems.
Echo $CCOPTS returns a blank line on both.
The problems NOT how to fix it, its how can
they be different . One machine the B2600 is
a CM verifcatiom machine. It should match the enviorment of the b2000 build machine.
This is an importain CM issue. One or the
other system was changed somewhere and I can't
find where.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 05:05 AM
03-30-2005 05:05 AM
Re: PA-RISC1.1 vs PA-RISC2 .0 object generation from ansi cc
depending on kernel bit-ness. Do a
"getconf KERNEL_BITS" to see if you're
in 32-bit or 64-bit mode.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-30-2005 06:06 AM
03-30-2005 06:06 AM
Re: PA-RISC1.1 vs PA-RISC2 .0 object generation from ansi cc
Also, speaking of 64-bit, the "proper" way to ask for 64-bit is to use +DD64 rather than +DA2.0W - +DD64 will also work on IPF.
As for trying to figure-out where something might be set, if all else fails, tusc'ing a compilation may be interesting.