- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- C Compiler
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
12-20-2005 01:29 AM
12-20-2005 01:29 AM
Just wanted to know how I actually know if HP C/ANSI C Developer's Bundle for HP-UX 11.00 (S800) is being used - its installed on most of our servers but not sure if we need it
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2005 01:43 AM
12-20-2005 01:43 AM
SolutionIf its installed, it would be the default for C compilation. If you do anything semi-serious, other than a kernel regeneration, you should have teh Ansi C compiler.
You should see '/usr/bin/cc' as a soft link to '/opt/ansic/bin/cc'. Do:
# ls ul '/opt/ansic/bin/cc'
...to see the (probable) last use of the compiler (aside from backups like 'tar').
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2005 01:48 AM
12-20-2005 01:48 AM
Re: C Compiler
# ls ul '/opt/ansic/bin/cc'
ul not found
/opt/ansic/bin/cc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2005 01:49 AM
12-20-2005 01:49 AM
Re: C Compiler
a5:/u/usr/merijn 104 > /usr/ccs/bin/cc -Ae -c /dev/null
(Bundled) cc: warning 480: The -A option is available only with the C/ANSI C product; ignored.
a5:/u/usr/merijn 105 > /opt/ansic/bin/cc -Ae -c /dev/null
a5:/u/usr/merijn 106 > cc -Ae -c /dev/null
a5:/u/usr/merijn 107 >
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2005 01:50 AM
12-20-2005 01:50 AM
Re: C Compiler
# ls -ul '/opt/ansic/bin/cc'
...for last access with details
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2005 01:51 AM
12-20-2005 01:51 AM
Re: C Compiler
# ls -ul /opt/ansic/bin/cc
Do a 'man ls' for info. on the '-u' switch.