rambocoder / erlycomet

Automatically exported from code.google.com/p/erlycomet
0 stars 0 forks source link

Demo crashes #4

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Running Windows Vista, Erlang R13B04, cygwin utils installed.

c:\Users\jeff\erlycomet>make
make
erl -make
Recompile: src/demo/erlycomet_demo_sup
Recompile: src/demo/erlycomet_demo_server
Recompile: src/demo/erlycomet_demo_rpc
Recompile: src/demo/erlycomet_demo_app
Recompile: src/demo/erlycomet_demo
Recompile: src/erlycomet/gen_server_cluster
Recompile: src/erlycomet/erlycomet_request
Recompile: src/erlycomet/erlycomet_cluster
Recompile: src/erlycomet/erlycomet_api

c:\Users\jeff\erlycomet>make run
make run
erl -make
erl -pa `pwd`/ebin -pa `pwd`/priv/ebin \
    -boot start_sasl \
    -config erlycomet_demo.config \
    -s erlycomet_demo \
    -sname erlycomet_demo

=PROGRESS REPORT==== 20-Jun-2011::20:01:22 ===
          supervisor: {local,sasl_safe_sup}
             started: [{pid,<0.40.0>},
                       {name,alarm_handler},
                       {mfa,{alarm_handler,start_link,[]}},
                       {restart_type,permanent},
                       {shutdown,2000},
                       {child_type,worker}]

=PROGRESS REPORT==== 20-Jun-2011::20:01:22 ===
          supervisor: {local,sasl_safe_sup}
             started: [{pid,<0.41.0>},
                       {name,overload},
                       {mfa,{overload,start_link,[]}},
                       {restart_type,permanent},
                       {shutdown,2000},
                       {child_type,worker}]

=PROGRESS REPORT==== 20-Jun-2011::20:01:22 ===
          supervisor: {local,sasl_sup}
             started: [{pid,<0.39.0>},
                       {name,sasl_safe_sup},
                       {mfa,
                           {supervisor,start_link,
                               [{local,sasl_safe_sup},sasl,safe]}},
                       {restart_type,permanent},
                       {shutdown,infinity},
                       {child_type,supervisor}]

=PROGRESS REPORT==== 20-Jun-2011::20:01:22 ===
          supervisor: {local,sasl_sup}
             started: [{pid,<0.42.0>},
                       {name,release_handler},
                       {mfa,{release_handler,start_link,[]}},
                       {restart_type,permanent},
                       {shutdown,2000},
                       {child_type,worker}]

=PROGRESS REPORT==== 20-Jun-2011::20:01:22 ===
         application: sasl
          started_at: erlycomet_demo@lenovo
{"init terminating in 
do_boot",{undef,[{erlycomet_demo,start,[]},{init,start_it,1},{init,start_em,1}]}
}

Crash dump was written to: erl_crash.dump
init terminating in do_boot ()
make: *** [run] Error 1

Original issue reported on code.google.com by surferj...@gmail.com on 21 Jun 2011 at 3:20

GoogleCodeExporter commented 9 years ago
we have `pwd` in Makefile which is not understood by windows system. Replace 
`pwd` with . in Makefile and it should be fine

Original comment by chaj...@gmail.com on 2 May 2012 at 12:01