- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Compiling Error
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
02-19-2002 02:46 AM
02-19-2002 02:46 AM
Compiling Error
Can anyone help. I have been asked to look into a compiling promlem but know nothing about software development.
A researcher is trying to compile some HP Fortran 90 code into an applicatiion called Sesam Proban (used in offshore engineering).
Running the Makefile results in the error message -
'Unsatisfied symbols:
libliom (code)
funclb (code)
*** Error exit code 1'
Funclb is a directory under the Seam home directory ie $SESAM_HOME/proban/funclb. This contains various makefiles and fortran code. The researcher says he has compiled fortran into proban successfully before but is stuck with this current message.
Any pointers would be greatfully received.
thanks,
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2002 02:56 AM
02-19-2002 02:56 AM
Re: Compiling Error
thanks,
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2002 03:18 AM
02-19-2002 03:18 AM
Re: Compiling Error

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2002 03:58 AM
02-19-2002 03:58 AM
Re: Compiling Error
I have attached the Makefile
Thanks
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2002 04:12 AM
02-19-2002 04:12 AM
Re: Compiling Error
/eng/apps1/sesam/proban/lib/funclb.a
exist?
Also, as the comments in the makefile say, make sure that PHSS 11669 is installed.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2002 06:53 AM
02-19-2002 06:53 AM
Re: Compiling Error
Thanks for taking a look at the makefile - funclb.a is installed at /eng/apps1/sesam/proban/lib though it had a permissions of 600 (read/write ofr the owner). I have changed this to 755.
Patch PHSS_11669 had been superseded by patch PHSS_21110 which is installed.
I have attached the full errorlog message for you to look at.
thanks for your help.
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2002 07:04 AM
02-19-2002 07:04 AM
Re: Compiling Error
Check this out:
http://us-support2.external.hp.com/cki/bin/doc.pl/sid=439f8e7d1a0b91b93a/screen=ckiDisplayDocument?docId=200000006383374
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2002 07:09 AM
02-19-2002 07:09 AM
Re: Compiling Error
Check this thread:
http://us-support2.external.hp.com/cki/bin/doc.pl/sid=439f8e7d1a0b91b93a/screen=ckiDisplayDocument?docId=200000036013369
HTH,
Shiju
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2002 08:08 AM
02-19-2002 08:08 AM
Re: Compiling Error
$ nm user.a | grep funclb
$ nm funclb.a | grep funclb
etc. This will at least tell you which object is referencing these symbols.
Perhaps there is another library you need to be linking with that contains these routines?
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-19-2002 09:34 PM
02-19-2002 09:34 PM
Re: Compiling Error
/eng/apps1/sesam/proban/lib/proban.o
/eng/apps1/sesam/proban/lib/user.a
/eng/apps1/sesam/proban/lib/funclb.a
/usr/lib/Motif1.2/libMrm.a
/usr/lib/Motif1.2/libXm.a
/usr/lib/X11R5/libXt.sl
/usr/lib/X11R5/libX11.sl
2. As Steven suggests, run 'nm' or 'strings' on each of these and grep for funclb to make sure funclb will be found. Ditto for liblim.
