It looks as if you have not installed the GNU C++ (g++) compiler - only the GNU C (gcc) compiler. The lines which starts "o obj/..." will start with "g++ -o obj/..." when the GNU C+++ compiler is installed. Regards, Søren
On Sun, Aug 30, 2009 at 05:59, silver <[email protected]> wrote: > > Hi guys, > > I'm gonna build V8 on ubuntu 9.04 and I've got the latest version of > V8. > > But, the output is like this: > > gcc -o obj/release/dtoa-config.o -c -Werror -Wno-uninitialized -m32 - > O3 -fomit-frame-pointer -fdata-sections -ffunction-sections -ansi - > DV8_TARGET_ARCH_IA32 -DV8_NATIVE_REGEXP -DENABLE_LOGGING_AND_PROFILING > -Isrc src/dtoa-config.c > o obj/release/accessors.o -c -Wall -Werror -W -Wno-unused-parameter - > Wnon-virtual-dtor -pedantic -m32 -O3 -fomit-frame-pointer -fdata- > sections -ffunction-sections -ansi -fno-rtti -fno-exceptions -Wall - > Werror -W -Wno-unused-parameter -Wnon-virtual-dtor -pedantic -m32 -O3 - > fomit-frame-pointer -fdata-sections -ffunction-sections -ansi - > DV8_TARGET_ARCH_IA32 -DV8_NATIVE_REGEXP -DENABLE_LOGGING_AND_PROFILING > -Isrc src/accessors.cc > /bin/bash: o: command not found > o obj/release/allocation.o -c -Wall -Werror -W -Wno-unused-parameter - > Wnon-virtual-dtor -pedantic -m32 -O3 -fomit-frame-pointer -fdata- > sections -ffunction-sections -ansi -fno-rtti -fno-exceptions -Wall - > Werror -W -Wno-unused-parameter -Wnon-virtual-dtor -pedantic -m32 -O3 - > fomit-frame-pointer -fdata-sections -ffunction-sections -ansi - > DV8_TARGET_ARCH_IA32 -DV8_NATIVE_REGEXP -DENABLE_LOGGING_AND_PROFILING > -Isrc src/allocation.cc > /bin/bash: o: command not found > o obj/release/api.o -c -Wall -Werror -W -Wno-unused-parameter -Wnon- > virtual-dtor -pedantic -m32 -O3 -fomit-frame-pointer -fdata-sections - > ffunction-sections -ansi -fno-rtti -fno-exceptions -Wall -Werror -W - > Wno-unused-parameter -Wnon-virtual-dtor -pedantic -m32 -O3 -fomit- > frame-pointer -fdata-sections -ffunction-sections -ansi - > DV8_TARGET_ARCH_IA32 -DV8_NATIVE_REGEXP -DENABLE_LOGGING_AND_PROFILING > -Isrc src/api.cc > /bin/bash: o: command not found > o obj/release/assembler.o -c -Wall -Werror -W -Wno-unused-parameter - > Wnon-virtual-dtor -pedantic -m32 -O3 -fomit-frame-pointer -fdata- > sections -ffunction-sections -ansi -fno-rtti -fno-exceptions -Wall - > Werror -W -Wno-unused-parameter -Wnon-virtual-dtor -pedantic -m32 -O3 - > fomit-frame-pointer -fdata-sections -ffunction-sections -ansi - > DV8_TARGET_ARCH_IA32 -DV8_NATIVE_REGEXP -DENABLE_LOGGING_AND_PROFILING > -Isrc src/assembler.cc > /bin/bash: o: command not found > o obj/release/ast.o -c -Wall -Werror -W -Wno-unused-parameter -Wnon- > virtual-dtor -pedantic -m32 -O3 -fomit-frame-pointer -fdata-sections - > ffunction-sections -ansi -fno-rtti -fno-exceptions -Wall -Werror -W - > Wno-unused-parameter -Wnon-virtual-dtor -pedantic -m32 -O3 -fomit- > frame-pointer -fdata-sections -ffunction-sections -ansi - > DV8_TARGET_ARCH_IA32 -DV8_NATIVE_REGEXP -DENABLE_LOGGING_AND_PROFILING > -Isrc src/ast.cc > > > The first souce file can be compiled by GCC, but then, GCC maybe > lost... > I have no idea what's going on here. > > Could you please have look at? > > > --~--~---------~--~----~------------~-------~--~----~ v8-users mailing list [email protected] http://groups.google.com/group/v8-users -~----------~----~----~----~------~----~------~--~---
