Operating System - HP-UX
1830885 Members
1722 Online
110017 Solutions
New Discussion

HP-UX 11iV3 Build error with RogueWave reference using native C++ libraries

 
SOLVED
Go to solution
SathishPrabhu
New Member

HP-UX 11iV3 Build error with RogueWave reference using native C++ libraries

Hi,

I'm trying to build HP-UX PA 32 bit code in HP_UX 11iV3 using Roguewave SourcePro Edition10 Update1 abd getting the below error.

Removed the reference to roguewave standard C++library and pointed to native C++ library comes along with aCC compiler A.06.20EVAL (RogueWave recognize as A.06.16).

Attached the compiler build references for verification.

Please can anyone help on this error?

echo "?\\.o:?s/\\(.*\\)\\.o:/\\1.o \\1.d:/\ng/^ *\\//d\n\$s/\\([^\\\\\\]*\\)\\\\\\*/\\1/\nw\nq\n" | ed tokenanalyzer.d 2>&1 > /dev/null
aCC: warning 952: The +Md option works in this release, but is deprecated. Use +Maked instead.
"/opt/aCC/include_std/iosfwd", line 39: catastrophic error #2013: expected a file name
#include _RWSTD_CWCHAR
^
1 catastrophic error detected in the compilation of "tokenanalyzer.cxx".
Compilation terminated.
gmake: [tokenanalyzer.d] Error 4 (ignored)
4 REPLIES 4
Dennis Handly
Acclaimed Contributor

Re: HP-UX 11iV3 Build error with RogueWave reference using native C++ libraries

ROGUE_STDLIB = /opt/aCC

You are illegally specifying the default -I path, remove it.
Change this to some non-existent path.

CXXOPTIONS = +ESnolit

This should be removed.

+W229 +W361 +W392,431,655,684,818,819 +W849,889,890

These are all bogus for Integrity.

>+nostl

You shouldn't use this if you are using aC++'s headers and shlibs.

>-ldld

The correct shlib is -ldl.

>/opt/aCC/include

These are not the right headers for -AA.
SathishPrabhu
New Member

Re: HP-UX 11iV3 Build error with RogueWave reference using native C++ libraries

Hi Dennis,

Thanks for your suggestion, it works now.
Will keep in touch if we need your assistance.
Dennis Handly
Acclaimed Contributor
Solution

Re: HP-UX 11iV3 Build error with RogueWave reference using native C++ libraries

>Thanks for your suggestion, it works now.

If you are happy with the answers, please read the following about how to assign points:
http://forums.itrc.hp.com/service/forums/helptips.do?#33
SathishPrabhu
New Member

Re: HP-UX 11iV3 Build error with RogueWave reference using native C++ libraries

Sure I will do.