В Пнд, 26/06/2006 в 09:23 -0400, Paul D. Smith пишет: > %% "Alexander (UnixBeginner.Com admin)" <[EMAIL PROTECTED]> writes: > > aca> I have the error: > aca> g++: error trying to exec 'as': execvp: No such file or directory > > aca> What's this? > > This is not a "make" issue. Your compiler is not installed correctly. > "as" is the assembler, and g++ (the compiler front-end) is trying to run > it but can't find it. > > In the GNU utilities, the assembler (as) and linker (ld) are shipped in > the binutils package, not in the compiler (gcc) package. You don't give > any information about your system architecture, operating system, > version, etc. so there's no much else we can say. > > If you can't solve the problem yourself, please contact the newsgroups > and mailing lists for GCC for more help (and provide all the above > information). > > > Good luck! >
more information: FC5, i386, make (GNU Make 3.80), g++ (Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-libgcj-multifile --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.4.2-gcj-1.4.2.0/jre --with-cpu=generic --host=i386-redhat-linux Thread model: posix gcc version 4.1.0 20060304 (Red Hat 4.1.0-3)), as (GNU assembler version 2.16.91.0.6 (i386-redhat-linux) using BFD version 2.16.91.0.6 20060212) [EMAIL PROTECTED] proj]$ make make -f ./src/common/Makefile "PATH=./src/common/" my_gtkmm make[1]: Entering directory `/home/alex/Desktop/proj' /usr/bin/g++ -D__DEBUG__ -c -pthread -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/gtk-2.0 -I/usr/include/sigc ++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/atk-1.0 -I/usr/local/pgsql/include src/common/echoframe.cpp -o src/common/echoframe.o g++: error trying to exec 'as': execvp: No such file or directory But: [EMAIL PROTECTED] proj]$ /usr/bin/g++ -D__DEBUG__ -c -pthread -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/gtk-2.0 -I/usr/include/sigc++-2.0 -I/usr/lib/sigc ++-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/atk-1.0 -I/usr/local/pgsql/include src/common/echoframe.cpp -o src/common/echoframe.o executed without errors _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
