- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- I have a problem with C developer??
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
Discussions
Discussions
Discussions
Forums
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
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
тАО09-05-2005 02:37 PM
тАО09-05-2005 02:37 PM
I have a problem with C developer??
missmatch ABI not are ELF file for -LC LIBC.A
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 09:17 PM
тАО09-06-2005 09:17 PM
Re: I have a problem with C developer??
Have you compiled anything successfully on this system? Has anyone else?
One suggestion is that you may be including '-lc' on the compile line. I don't think you need to do that, it is implied, normally.
What other flags or options are you using? Is +DD64 set either on the command line or in CFLAGS? This would mean you are building a 64 bit application, and I think -lc would try to pick up the 32 bit library by default, which would lead to an error like the one you are reporting, but without more data I'm just guessing.
Andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 09:32 PM
тАО09-06-2005 09:32 PM
Re: I have a problem with C developer??
If I want to set +DD64 either on the command line or in CFLAGS, how can I do this operation??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 09:33 PM
тАО09-06-2005 09:33 PM
Re: I have a problem with C developer??
Either there is something wrong in giving the path via -L option that's why it says not ELF.
Or you are linking wrong files 32-64 or vice versa.
It will be helpful if you can give your code snippet.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 09:39 PM
тАО09-06-2005 09:39 PM
Re: I have a problem with C developer??
Give the link line.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 09:43 PM
тАО09-06-2005 09:43 PM
Re: I have a problem with C developer??
cc -o test hello_program.c
Alex.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 10:02 PM
тАО09-06-2005 10:02 PM
Re: I have a problem with C developer??
HP engineer told me that I had installed a PA system C compiler in a Itanium system,but I remembered I had installed a IA C compiler .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 10:06 PM
тАО09-06-2005 10:06 PM
Re: I have a problem with C developer??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 10:08 PM
тАО09-06-2005 10:08 PM
Re: I have a problem with C developer??
Please give the full command line you are using to try to compile the program, and the exact error message you are seeing.
Without that we cannot help you.
Andrew
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-06-2005 10:30 PM
тАО09-06-2005 10:30 PM
Re: I have a problem with C developer??
It will automatically do.
The system libraries are present in LD_LIBRARY_PATH.
Now if you generate a 32 bit program you will get linked to 32 bit libraries and the same for 64.
You just have to mention that you are making a 64 bit application. I dont' remember that tag right now.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-07-2005 01:30 PM
тАО09-07-2005 01:30 PM
Re: I have a problem with C developer??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-07-2005 07:18 PM
тАО09-07-2005 07:18 PM
Re: I have a problem with C developer??
> and I can not work with that rx4640.So
> my message is provided by my customer.
Ok, I understand, but you need to get the full information from them in order to solve the problem. If they want you to find the answer they have to tell you what they are doing.
Certainly one cause of the message is attempting to link 64 and 32 bit modules. Establishing exactly what your customer is doing is the quickest way of deducing what is wrong.
Andrew