You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 satır
436B

  1. const cpp_code = ``.trim();
  2. const html_code = ``.trim();
  3. const js_code = ``.trim();
  4. const flags = `
  5. -cheerp-pretty-code
  6. -cheerp-no-type-optimizer
  7. -cheerp-no-native-math
  8. -cheerp-no-math-imul
  9. -cheerp-no-math-fround
  10. -O3
  11. -target cheerp`.trim()
  12. const wasm_code = '';
  13. export const example = {
  14. title: 'Some example',
  15. cpp_code: cpp_code,
  16. js_code: js_code,
  17. wasm_code: wasm_code,
  18. html_code: html_code,
  19. flags: flags
  20. }