IDE: g++, where are you? g++ vs qcc for "standard make c++ p


IDE: Momentics PE, R1.0, 05/24/2002

I created a “Standard Make C++ Project” from one of my existing software
components. When I build, it uses the g++ compiler. However, g++.exe is AWOL
from my WinNT installation, so my build was torpedoed at the start of the
engagement.

I notice that when I create a new “QNX C++ Application Project” it uses the
qcc front end, and this works fine.

How do I get my Standard Make C++ Project to use qcc instead of g++? Is
that even the right question to ask? What is the correct way to create and
build an existing “standard make” project that contains a mixture of QNX and
PhAB executables?

BTW: When I build from Photon, g++ exists and it attempts to compile, but it
fails for other reasons. I expect that I still need to make it use qcc.

->>>–Sherwood–>

Never mind! As a last resort I read the documentation :wink:. I can override
the choice of compiler by putting this in my Makefiles:

CC=qcc
CXX=qcc

->>>–Sherwood–>

Dale Sherwood, NYAB wrote in message …

How do I get my Standard Make C++ Project to use qcc instead of g++?