Operating System - HP-UX
1753905 Members
9892 Online
108810 Solutions
New Discussion

Help with aCC make on 11.31 IA64

 
Graham Van der vaart_1
Super Advisor

Help with aCC make on 11.31 IA64

Hi,
I am new to programming. I have a 32 bit application developed for HP-UX 11.11 PA-RISC 64 bit that I want to port to HP-UX 11.31 IA64 as a 32 bit application.
The makefile flags for the existing program look something like this:

# 32 bit
COMPCXX = aCC +O2 +W829,612 -c -DoHPaCXX -DoHPUX11
LINKCXX = aCC +inst_none -Wl,+s

How should I setup the flags for the new platform?

Kind Regards
Graham
1 REPLY 1
Dennis Handly
Acclaimed Contributor

Re: Help with aCC make on 11.31 IA64

>COMPCXX = aCC +O2 +W829,612 -c -DoHPaCXX -DoHPUX11

These warnings no longer exist in aCC6: +W829,612

>LINKCXX = aCC +inst_none -Wl,+s

+inst_none hasn't existed since 1997, remove it on both.
You may want to use +wlint to clean up your code.