- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: IMGACT-F-BAD_LINK Problems executing old vax i...
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
08-11-2004 01:48 AM
08-11-2004 01:48 AM
%, image, linked /NATIVE_ONLY, cannot call a translated routine
-IMGACT-F-FIXUPERR, error when CUC_MAILING referenced FORRTL_D56_TV
I have recompiled and relinked several other programs without any problems.
Any idea what the problem is and how to resolve it.?
brgrds
Kjetil Johansen
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2004 01:55 AM
08-11-2004 01:55 AM
Re: IMGACT-F-BAD_LINK Problems executing old vax images recompiled and linked on Alpha
technically FIXUPERR require /NONATIVE qualifier in link. See HELP /MES FIXUPERR.
I guess you try link using shared image vested from vax (and they are named _TV)
Try using /NONATIVE and post furthermore informations for more detailed help.
Cheers
Antonio Vigliotti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2004 02:38 PM - last edited on 09-16-2024 02:22 AM by support_s
08-11-2004 02:38 PM - last edited on 09-16-2024 02:22 AM by support_s
Re: IMGACT-F-BAD_LINK Problems executing old vax images recompiled and linked on Alpha
When you compile use the /TIE qualifier.
When you link use the /NONATIVE_ONLY qualifier.
Regards
Dave
- Tags:
- drive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2004 03:20 PM
08-11-2004 03:20 PM
SolutionYour image is referencing FORRTL_D56_TV, which is translated.
Check your link map to see where the reference is coming from (LINK/MAP/FULL).
The most likely reason for this is code that calls a routine with a "FOR$" prefix, for example FOR$DATE for FOR$TIME. The prefix in the native DEC$FORRTL is "DFOR$". Check your code to see where and why these routines are being used. You need to replace them with generic routine names or builtins.
One exception, FOR$RAB should be recognised by recent versions of the compiler and replaced with "DFOR$RAB" (but don't declare it "EXTERNAL"). If you're running DEC FORTRAN V6.1 or below this won't happen. If so, DON'T change your code, upgrade your compiler!