Hi!

Have just checked out the repo and get the following error on make

https://gist.github.com/1769231

Please advise. Am running gcc version 4.4.3 on Ubuntu 10.04 x86_64

Thanks

On Mon, Feb 6, 2012 at 4:52 PM, Daniel Kang <m...@daniel.gs> wrote:

> Hi.
>
> I've recently started working on this project:
> https://github.com/d5/node.native
> Primary goal of the project is to implement the C++ 11 port for the
> node.
>
> It's as easy as node.js. Look at the following code sample using
> lambda expression:
>
> #include <iostream>
> #include "http.h"
> using namespace native::http;
>
> int main()
> {
>    http server;
>    if(server.listen("0.0.0.0", 8080, [](request& req, response& res){
>        res.set_status(200);
>        res.set_header("Content-Type", "text/plain");
>        res.end("C++ FTW\n");
>    })) std::cout << "Server running at http://0.0.0.0:8080/"; <<
> std::endl;
>
>    return native::run();
> }
>
> It's pretty preliminary stage, but, I'm working on adapting any types
> of callable object (function, functor, stateless, and stated lambda)
> into callbacks. For the current release, it's mainly based on libuv
> (https://github.com/joyent/libuv).
>
> If you're interested in, please tell me about your ideas, or leave
> messages at github.
>
> Thanks,
>
> - Daniel
>
> --
> 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 nodejs@googlegroups.com
> To unsubscribe from this group, send email to
> nodejs+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/nodejs?hl=en?hl=en
>

-- 
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 nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to