Suddenly xcode stopped building my application. I'm using gcc4.3 to write C++ code and autotools to manage the Makefiles. When I try to compile using xcode, I get this message:
Building target “yafeq” of project “yafeq” with configuration “Debug”
Checking Dependencies
ExternalBuildToolExecution yafeq
cd /Users/aaragon/Documents/workspace/yafeq
/usr/bin/make
/usr/bin/make all-recursive
Making all in yafeq
g++-mp-4.3 -O2 -ftree-vectorize -fdump-tree-vect -ftree-vectorizer-verbose=7 -DHAVE_CONFIG_H -I. -I.. -I/Users/aaragon/Lib/loki/include -I/Users/aaragon/Lib/CGAL/include -I/Users/aaragon/Lib/SuperLU -MT cppblas.o -MD -MP -MF .deps/cppblas.Tpo -c -o cppblas.o cppblas.cpp
make[2]: g++-mp-4.3: Command not found
make[2]: *** [cppblas.o] Error 127
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2
However, it used to work just fine. Also, running make on the terminal works perfectly. Does anyone know what is happening here? Thanks a lot,
aa