Advertisement
Guest User

g-wan installation problem under Debian Wheezy

a guest
Dec 31st, 2012
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.64 KB | None | 0 0
  1. ./gwan
  2.  
  3. loading.
  4. > 'hello.scala': to use Scala (*.scala scripts), install 'scalac' (sudo apt-get install scalac)...
  5. > 'hello.cs': to use C# (*.cs scripts), install 'mono-devel' (sudo apt-get install mono-devel)
  6. > 'loan.cs': to use C# (*.cs scripts), install 'mono-devel' (sudo apt-get install mono-devel).
  7. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  8. Warning: hello.m
  9. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  10. /home/gwan/127.0.0.1_8080/#0.0.0.0/csp/hello.m:
  11. In function 'main':
  12. /csp/hello.m:37:4: warning: 'Hello' may not respond to '+alloc' [enabled by default]
  13. /csp/hello.m:37:4: warning: (Messages without a matching method signature [enabled by default]
  14. /csp/hello.m:37:4: warning: will be assumed to return 'id' and accept [enabled by default]
  15. /csp/hello.m:37:4: warning: '...' as arguments.) [enabled by default]
  16. /csp/hello.m:39:4: warning: 'Hello' may not respond to '-free' [enabled by default]
  17.  
  18. 34|// ----------------------------------------------------------------------------
  19. 35|int main(int argc, char *argv[])
  20. 36|{
  21. 37!   Hello *hello = [[Hello alloc] initWithBuffer:get_reply(argv)];
  22. 38|   [hello whatsup];
  23. 39|   [hello free];
  24. 40|   return 200; // return an HTTP code (200:'OK')
  25. 41|}
  26.  
  27.  
  28. > 'hello.js': to use Javascript (*.js scripts), install 'nodejs' (sudo apt-get install nodejs).
  29. > 'hello.lua': to use Lua (*.lua scripts), install 'lua' (sudo apt-get install lua)
  30. > 'argv.cs': to use C# (*.cs scripts), install 'mono-devel' (sudo apt-get install mono-devel).
  31. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  32. Warning: hello.mm
  33. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  34. /home/gwan/127.0.0.1_8080/#0.0.0.0/csp/hello.mm:
  35. In function 'int main(int, char**)':
  36. /csp/hello.mm:37:40: warning: 'Hello_cpp' may not respond to '+alloc' [enabled by default]
  37. /csp/hello.mm:37:40: warning: (Messages without a matching method signature [enabled by default]
  38. /csp/hello.mm:37:40: warning: will be assumed to return 'id' and accept [enabled by default]
  39. /csp/hello.mm:37:40: warning: '...' as arguments.) [enabled by default]
  40. /csp/hello.mm:39:15: warning: 'Hello_cpp' may not respond to '-free' [enabled by default]
  41.  
  42. 34|// ----------------------------------------------------------------------------
  43. 35|int main(int argc, char *argv[])
  44. 36|{
  45. 37!   Hello_cpp *hello = [[Hello_cpp alloc] initWithBuffer:get_reply(argv)];
  46. 38|   [hello whatsup_cpp];
  47. 39|   [hello free];
  48. 40|   return 200; // return an HTTP code (200:'OK')
  49. 41|}
  50.  
  51. .
  52. > 'hello.go': to use Go (*.go scripts), install 'go build' (sudo apt-get install go build)
  53.  
  54.  
  55. Segmentation fault
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement