I had some issues while compiling SilkJS, under Linux Mint 12 x64 (Ubuntu based distribution). It was complaining about :
- ... undefined reference to 'operator new[](unsigned long)' ...
- and libexpat & libdl dependences
I made some slight changes to src/Makefile and it worked :
silkjs: deps $(V8DIR) $(V8) $(CORE) $(OBJ) SilkJS.h Makefile
g++ -o silkjs $(CORE) $(OBJ) $(V8LIBS) -lmysqlclient -lmm -lgd -lncurses -lssl -lpthread -lsqlite3 -lcurl -lssh2 -lmemcached -lcairo -lexpat -ldl -Wl,-rpath=/usr/local/silkjs/src/v8,-rpath=$(V8LIB_DIR)
(changed "gcc" to "g++", and added -lexpat and -ldl linking)
I had some issues while compiling SilkJS, under Linux Mint 12 x64 (Ubuntu based distribution). It was complaining about :
I made some slight changes to src/Makefile and it worked :
silkjs: deps$(V8DIR) $ (V8) $(CORE) $ (OBJ) SilkJS.h Makefile$(CORE) $ (OBJ) $(V8LIBS) -lmysqlclient -lmm -lgd -lncurses -lssl -lpthread -lsqlite3 -lcurl -lssh2 -lmemcached -lcairo -lexpat -ldl -Wl,-rpath=/usr/local/silkjs/src/v8,-rpath=$ (V8LIB_DIR)
g++ -o silkjs
(changed "gcc" to "g++", and added -lexpat and -ldl linking)