Marmalade.txt 565 B

1234567891011121314
  1. How to start:
  2. 1. Download and install Marmalade. http://www.madewithmarmalade.com/
  3. 2. Go to oxygine-framework/examples folder
  4. 3. Double click on examples/Demo/proj.marmalade/demo.mkb
  5. 4. Select x86 debug configuration
  6. 5. Build and run!
  7. * If you see build error:
  8. d:/marmalade/7.4/s3e/h/std/math_gcc.h(40): error : reference to 'log' is ambiguous (col 47)
  9. then open math_gcc.h, find line with error:
  10. static inline double log2(double x) { return (log(x) / _M_LOG2_E); }
  11. and change it to:
  12. static inline double log2(double x) { return (::log(x) / _M_LOG2_E); }