On Fri, Feb 10, 2012 at 22:05, steve johnston <[email protected]> wrote: > I am trying to run make on the master as you mentioned: > > Configure: > > [root@test joyent-node-d4ccdea]# ./configure > { 'target_defaults': { 'cflags': [], > 'defines': [], > 'include_dirs': [], > 'libraries': ['-lz']}, > 'variables': { 'host_arch': 'ia32', > 'node_install_npm': 'true', > 'node_install_waf': 'true', > 'node_prefix': '', > 'node_shared_cares': 'false', > 'node_shared_v8': 'false', > 'node_use_dtrace': 'false', > 'node_use_openssl': 'true', > 'node_use_system_openssl': 'false', > 'target_arch': 'ia32', > 'v8_use_snapshot': 'true'}} > creating ./config.gypi > creating ./config.mk > > Make: > > [root@test joyent-node-d4ccdea]# make > make -C out BUILDTYPE=Release > make[1]: Entering directory `/usr/local/src/joyent-node-d4ccdea/out' > g++ -c -o > /usr/local/src/joyent-node-d4ccdea/out/Release/obj.target/v8_snapshot/geni/snapshot.o > /usr/local/src/joyent-node-d4ccdea/out/Release/obj.target/v8_snapshot/geni/snapshot.cc > g++: > /usr/local/src/joyent-node-d4ccdea/out/Release/obj.target/v8_snapshot/geni/snapshot.cc: > No such file or directory > g++: no input files > make[1]: *** > [/usr/local/src/joyent-node-d4ccdea/out/Release/obj.target/v8_snapshot/geni/snapshot.o] > Error 1 > make[1]: Leaving directory `/usr/local/src/joyent-node-d4ccdea/out' > make: *** [node] Error 2 > > There is no "...Release/obj.target/v8_snapshot..." path:
I don't quite understand why it's not working for you. Maybe it's your python version, gyp (the build system) needs python >= 2.5 to work reliably. This particular issue can probably be resolved by passing --without-snapshot to configure. -- 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
