Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
I've been having trouble getting any versions of NODE.JS to execute on my DNS-323's...
I've tried the arm/oarm varieties in Memiks repository, but they all seem to be missing a local library on my end:
node: can't resolve symbol '__aeabi_i2d'
I've plunked around a bit at attempting to compile it myself , but I'm currently stuck on uclibc - all my executables start
segment fault whenever I install it...
Maybe Node just doesn't compile on oabi hardware ?
This post seems to suggest so ... Has anyone else had any experience with this application on a DNS-323 ?
Offline
Hello NodeJS does not compile on OABI (I need to remove my package...)
You must install it on EABI linux kernel and FFP 0.7 EABI also.
After that could you please tell me if you have GCC 4.3 installed ?
on my DNS-320 NodeJS v0.8.21 works with package : http://ffp.memiks.fr/pkg/node-0.8.21-arm-2.txz
I test it with this file hello.js:
var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen(83, '0.0.0.0'); console.log('Server running at http://0.0.0.0:83/');
Offline
Hi Memiks, thanks for your reponse- I have gcc 4.5 installed on the 323 running ffp 0.7
If I understand the problem correctly, it seems that it's V8 that doesn't support compilation on oabi...? I have read that a fix has been requested, but I'm not holding my breath
Last edited by Amorphis (2013-04-08 00:21:55)
Offline
Did someone make it work?? nodejs on dns 323?
I have gcc --version
gcc (GCC) 4.6.2
But i couldn't .
Regards
Offline
elranu wrote:
Did someone make it work?? nodejs on dns 323?
I have gcc --version
gcc (GCC) 4.6.2
But i couldn't .
Regards
Sorry but no version of nodeJS on OABI kernel, NodeJS IS NOT compatible with OABI Kernel !
so I built a package but it does not start sorry...
Offline