- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how to check C compiler status
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
09-13-2006 12:27 AM
09-13-2006 12:27 AM
how to check C compiler status
i would like to check the C or ANSI C or C++ compiler working fine or not, because of user facing some problem so they are saying problem with C Compiler, so they asking to reload the C compiler, the user got error like
ld: Unsatisfied symbols:
$global$ (data) (probably missing /usr/ccs/lib/crt0.o)
Building the independent server mulserv
*** Expect unresolved references similar to:
/usr/ccs/bin/ld: Unsatisfied shared library symbols:
so that is error, and how can i check it out.
thanks
siva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2006 12:36 AM
09-13-2006 12:36 AM
Re: how to check C compiler status
I would suggest you look at:
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1059351
Seems to be the same/similar problem. Having one thread for one problem means updates can be tracked by the contributors.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2006 12:38 AM
09-13-2006 12:38 AM
Re: how to check C compiler status
# cat ./hello.c
#include
main ()
{
printf ("%s\n", "Hello world!");
exit (0);
}
# cc ./hello.c -o hello
# ./hello
Hello world!
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2006 12:48 AM
09-13-2006 12:48 AM
Re: how to check C compiler status
peter yes offcourse that's our backend support team, so i am getting terminate this seesion, let him to continue
Dear James your recomentation is working fine, so that means, can come to conclusion C compiler is working fine?????.
thanks
siva
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2006 02:43 AM
09-13-2006 02:43 AM
Re: how to check C compiler status
You cannot conclude from the simple "Hello world" compile and link that all is well because very few libraries are included in that trivial exercise. It is, however, a good indication that the compiler/linker is fully functional.
If you correct your pilot errors, (ie properly configure your makefiles and select the correct compiler/linker options), then your problems will disappear.