- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: HP-UX 11.00 cc compiler crash (error 1405)
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
10-18-2001 07:45 AM
10-18-2001 07:45 AM
HP-UX 11.00 cc compiler crash (error 1405)
HP-UX gumby B.11.00 U 9000/800 1516750518 unlimited-user license
When I try to compile one of my .c files like this:
cc -v +u1 +DD64 +O2 +Z -DALL_PUP_VERSIONS -DINV -I../includes
combined_source_tgz1.c -c
the C compiler crashes with this:
cc: error 1405: "/opt/ansic/lbin/ccom" terminated abnormally with signal 11,
*** Error exit code 9
I was still able to crash the HP-UX 11.00 C compiler with +O1 (rather than +O2) and even without optimization. So it appears optimization is not the cause of this
problem.
So I tried to install patches "PHSS_25171 s700_800 11.00 ANSI C compiler cumulative patch" and "PHSS_25249 s700_800 11.00 +O4/PBO compiler cumulative patch" on this machine, but, for some reason, they will not install!
Please see attached file for:
1.) complete output from the aforementioned cc command that causes cc to crash
2.) the output of the "swlist" on this machine
3.) the error messages spat out when trying to install patches PHSS_25171 and PHSS_25249
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2001 08:04 AM
10-18-2001 08:04 AM
Re: HP-UX 11.00 cc compiler crash (error 1405)
swlist -a state -l fileset
and check for any filesets that say installed, i.e. not configured.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2001 04:37 PM
10-18-2001 04:37 PM
Re: HP-UX 11.00 cc compiler crash (error 1405)
It's really perplexing why I can't install patches PHSS_25171 or PHSS_25249
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2001 11:44 PM
10-18-2001 11:44 PM
Re: HP-UX 11.00 cc compiler crash (error 1405)
Patch PHSS_25171 is dependent on patches
s700: 11.00: PHSS_22217
s800: 11.00: PHSS_22217
have you installed them?
What are the error messages?
Thanks
G Manikandan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2001 11:55 PM
10-18-2001 11:55 PM
Re: HP-UX 11.00 cc compiler crash (error 1405)
good you posted the sw logs. It looks to me the patches youre trying to apply are for version 11.0 of the ANSI/C compiler, and you already have 11.02.02 installed (which probably already includes these fixes). Can you do an;
swlist -l fileset B3901BA
and post the results.
Cheers,
Stefan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2001 08:22 AM
10-19-2001 08:22 AM
Re: HP-UX 11.00 cc compiler crash (error 1405)
Right, PHSS_25171 is dependent on PHSS_22217, but when you look at the "PHSS_22217 patch description" on the http://us-support2.external.hp.com/ website, you see that it is superseded / replaced by PHSS_25249. And I can't install this PHSS_25249 either! If you look at my original posting (above), there is a .txt file attached to it. Click on the little paperclip thingy (near the upper right corner of my original posting). You see near the bottom of this attachment the error messages I'm getting when I try to install either patch PHSS_25171 or PHSS_25249
Thanks,
/ Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2001 09:41 AM
10-19-2001 09:41 AM
Re: HP-UX 11.00 cc compiler crash (error 1405)
Attached is the output of the command "swlist -l fileset B3901BA"
/ Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2001 10:34 AM
10-19-2001 10:34 AM
Re: HP-UX 11.00 cc compiler crash (error 1405)
cc +u1 +DD64 +Z sample.c -c
and you will (probably) see:
cc: error 1405: "/opt/ansic/lbin/ccom" terminated abnormally with signal 11.
-----------------------------
#include
#include
#include
typedef struct str_test{
unsigned long size_test;
unsigned char * data;
}*TEST;
void useless_func(TEST t,unsigned long newsize)
{
return;
}
void failure_func(TEST t,unsigned long l)
{
unsigned long i;
i=l/8;
if(i+1>t->size_test){
useless_func(t,
(((unsigned long)(t->size_test)*1.3)>(i+1)) ?
(unsigned long)(t->size_test*1.3) :
(i+1));
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2001 10:05 PM
10-21-2001 10:05 PM
Re: HP-UX 11.00 cc compiler crash (error 1405)
You have the new file sets i.e.11.11 version.
The C compiler you have got is for 11.00.
I am not sure whether one can additionally install the filesets of 11.00 version.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2001 10:06 PM
10-21-2001 10:06 PM
Re: HP-UX 11.00 cc compiler crash (error 1405)
You have the new file sets i.e.11.11 version.
The C compiler you have got is for 11.00.
I am not sure whether one can additionally install the filesets of 11.00 version.
The link below shows the c compiler for HP UX versions.
http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B3899BA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-21-2001 10:30 PM
10-21-2001 10:30 PM
Re: HP-UX 11.00 cc compiler crash (error 1405)
sorry for my earlier posting.I was really confused.
You have the compiler for 11.11
just try the link below for the patch
PHSS_24830.
http://us-support.external.hp.com/cki/bin/doc.pl/sid=1830c6060e2df862e8/screen=ckiDisplayDocument?docId=200000056482621
Thanks
G Manikandan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2001 06:34 AM
10-23-2001 06:34 AM
Re: HP-UX 11.00 cc compiler crash (error 1405)
I am confused. This HP-UX 11.00 machine was originally configured by HP. Why do I have the HP-UX 11i C compiler on my HP-UX 11.0 machine?
Also, can you please copy the sample .c file (from my posting above) and compile it on your 64-bit HP-UX machine and see if the compiler crashes for you as well?!
Thanks,
/ Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-23-2001 06:38 AM
10-23-2001 06:38 AM
Re: HP-UX 11.00 cc compiler crash (error 1405)
Why do I have the HP-UX 11.11 C compiler on my HP-UX 11.00 machine?