On Wed, Jul 11, 2012 at 11:08 PM, Michael Smith <[email protected]> wrote: > So I did as you asked and got a somewhat different error. Now it seems to be > missing snapshot.cc. (note: this is still 0.8.2) > > ./configure && make > { 'target_defaults': { 'cflags': [], > 'default_configuration': 'Release', > 'defines': [], > 'include_dirs': [], > 'libraries': []}, > 'variables': { 'host_arch': 'ia32', > 'node_install_npm': 'true', > 'node_install_waf': 'true', > 'node_no_strict_aliasing': 1, > 'node_prefix': '', > 'node_shared_openssl': 'false', > 'node_shared_v8': 'false', > 'node_shared_zlib': 'false', > 'node_use_dtrace': 'false', > 'node_use_etw': 'false', > 'node_use_openssl': 'true', > 'target_arch': 'ia32', > 'v8_no_strict_aliasing': 1, > 'v8_use_snapshot': 'true'}} > creating ./config.gypi > creating ./config.mk > make -C out BUILDTYPE=Release > make[1]: Entering directory `/root/node-v0.8.2/out' > g++ -c -o > /root/node-v0.8.2/out/Release/obj.target/v8_snapshot/geni/snapshot.o > /root/node-v0.8.2/out/Release/obj.target/v8_snapshot/geni/snapshot.cc > g++: /root/node-v0.8.2/out/Release/obj.target/v8_snapshot/geni/snapshot.cc: > No such file or directory > g++: no input files > make[1]: *** > [/root/node-v0.8.2/out/Release/obj.target/v8_snapshot/geni/snapshot.o] Error > 1 > make[1]: Leaving directory `/root/node-v0.8.2/out' > make: *** [node] Error 2
It seems the overarching theme with your machine is that generating code or post-processing object files somehow doesn't work (both debug-support.o and snapshot.o are the result of actions that do that). What happens when you run configure with --without-snapshots? -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
