From: Ryan Date: Fri, 11 Sep 2009 18:05:22 +0000 (+0200) Subject: Add '--' to seperate v8 args from program args X-Git-Tag: v0.1.10~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1910c113cc4fa32254779607348b4103a1974666;p=platform%2Fupstream%2Fnodejs.git Add '--' to seperate v8 args from program args --- diff --git a/src/node.cc b/src/node.cc index 9158e83..cc83490 100644 --- a/src/node.cc +++ b/src/node.cc @@ -28,6 +28,8 @@ extern char **environ; namespace node { +static int dash_dash_index = 0; + Local Encode(const void *buf, size_t len, enum encoding encoding) { HandleScope scope; @@ -347,10 +349,12 @@ static Local Load(int argc, char *argv[]) { node_obj->Set(String::NewSymbol("version"), String::New(NODE_VERSION)); int i, j; - Local arguments = Array::New(argc); - for (i = 0; i < argc; i++) { + Local arguments = Array::New(argc - dash_dash_index + 1); + + arguments->Set(Integer::New(0), String::New(argv[0])); + for (j = 1, i = dash_dash_index + 1; i < argc; j++, i++) { Local arg = String::New(argv[i]); - arguments->Set(Integer::New(i), arg); + arguments->Set(Integer::New(j), arg); } global_obj->Set(String::NewSymbol("ARGV"), arguments); @@ -431,7 +435,10 @@ static void PrintHelp() { static void ParseArgs(int *argc, char **argv) { for (int i = 1; i < *argc; i++) { const char *arg = argv[i]; - if (strcmp(arg, "--version") == 0 || strcmp(arg, "-v") == 0) { + if (strcmp(arg, "--") == 0) { + dash_dash_index = i; + break; + } else if (strcmp(arg, "--version") == 0 || strcmp(arg, "-v") == 0) { printf("%s\n", NODE_VERSION); exit(0); } else if (strcmp(arg, "--cflags") == 0) { @@ -450,7 +457,7 @@ static void ParseArgs(int *argc, char **argv) { int main(int argc, char *argv[]) { node::ParseArgs(&argc, argv); - V8::SetFlagsFromCommandLine(&argc, argv, true); + V8::SetFlagsFromCommandLine(&argc, argv, false); evcom_ignore_sigpipe(); ev_default_loop(EVFLAG_AUTO); // initialize the default ev loop.