Operating System - HP-UX
1753946 Members
8193 Online
108811 Solutions
New Discussion юеВ

Re: Migration from HP Unix 11.11 to HpUnix 11.31(Itanium)

 
SOLVED
Go to solution
Venkat  R.S
Occasional Contributor

Migration from HP Unix 11.11 to HpUnix 11.31(Itanium)

I am getting the following error message when i am trying to migrate the C++ code from HP Unix 11.11 to HP Unix 11.31(Itanium)

======== Rebuilding "/cc/commserv/root/cs_hpux11.11/bin/../obj/gcsLogSecClientSocket.o" ========
Generating /cc/commserv/root/cs_hpux11.11/bin/../obj/gcsLogSecClientSocket.o from gcsLogSecClientSocket.C
OBJ= /cc/commserv/root/cs_hpux11.11/bin/../obj/gcsLogSecClientSocket.o /cc/commserv/root/cs_hpux11.11/bin/../obj/gcsLogSecClient.o /cc/commserv/root/cs_hpux11.11/bin/../obj/gcsLogSecMessageClass.o /cc/commserv/root/cs_hpux11.11/bin/../obj/gcsSendMessage.o /cc/commserv/root/cs_hpux11.11/bin/../obj/gcsSeclog.o
/opt/aCC/bin/aCC -c -ptr/cc/commserv/root/cs_hpux11.11/bin/../obj/gcsLogSecClientSocket.o.ptrep -I/cc/smc3/root/development/common_code/codec/export -I../../inc -I../../ext/inc -g -D_HPUX_SOURCE +Olit=none +w +W829 +W444 +W392 -DGCS_HPUX_11 -mt +Z gcsLogSecClientSocket.C -o /cc/commserv/root/cs_hpux11.11/bin/../obj/gcsLogSecClientSocket.o
aCC: error 1914: bad form for `-t' option
*** Error code 1
clearmake: Error: Build script failed for "/cc/commserv/root/cs_hpux11.11/bin/../obj/gcsLogSecClientSocket.o"
========================================================

please support
3 REPLIES 3
g3jza
Esteemed Contributor

Re: Migration from HP Unix 11.11 to HpUnix 11.31(Itanium)

Hi,

look at this ARIES documentation:

http://h21007.www2.hp.com/portal/site/dspp/menuitem.863c3e4cbcdc3f3515b49c108973a801?ciid=f6ccb52bdb779110VgnVCM100000275d6e10RCRD

It can help you to migrate the parisc binaries to run on itanium.
Dennis Handly
Acclaimed Contributor
Solution

Re: Migration from HP Unix 11.11 to HpUnix 11.31(Itanium)

>aCC -c -ptr/cc/commserv/root/cs_hpux11.11/bin/../obj/gcsLogSecClientSocket.o.ptrep +Olit=none +w +W829 +W444 +W392
aCC: error 1914: bad form for `-t' option

You need to look at your PA builds. You need to clean up any warnings there:
aCC: warning 902: "-ptr" is an unsupported option:

This cfront option has been obsoleted since 1997.

>+W829 +W444 +W392

These aren't useful on Integrity.
Instead of +w, you may want +wlint.
You should probably remove +Olit=none if your code is Standard.

>g3jza: look at this ARIES documentation:

No need if using the Integrity compilers.
Venkat  R.S
Occasional Contributor

Re: Migration from HP Unix 11.11 to HpUnix 11.31(Itanium)

Hi,

Thanks for your feedback.

With Regards
Venkat