Hi, Vyacheslav Egorov wrote: > The representation of an executable [specific sections inside] is not > essential for V8. You can just remove these two flags from SConstruct > and proceed with compilation. This should not affect V8.
Thank you, removing the flags worked. Also, I used env.Replace(CC = '/usr/gnu/bin/gcc') in src/SConscript to make SCons only use GCC. It works well when compiling dtoa-config.c, but I'm not sure if it's causing the following error. Now my issue is that, after SCons successfully compiles dtoa-config.c, it starts compiling the rest of the files using a non-existent program called "o." Here's what happens: $ scons [SCons is building...] o obj/release/accessors.c -c -Wall [...etc...] o: not found [SCons continues... and eventually terminates due to errors.] The only "o" in the file system is a folder in terminfo. Is "o" a misspelling in a SCons/V8 file or a missing object linker or something? Thank you, pikpik -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
