Advertisement
Guest User

Untitled

a guest
May 12th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. # This file will be copied to ~/.emscripten if that file doesn't exist. Or, this is that copy.
  2. # IMPORTANT: Edit the *copy* with the right paths!
  3.  
  4. EMSCRIPTEN_ROOT = 'C:/Projects/emscripten' # this helps projects using emscripten find it
  5.  
  6. LLVM_ROOT = 'C:/Projects/llvm/build30/bin/Release'
  7.  
  8. # See below for notes on which JS engine(s) you need
  9. NODE_JS = 'node'
  10. SPIDERMONKEY_ENGINE = [os.path.expanduser('~/Dev/mozilla-central/js/src/js'), '-m', '-n']
  11. V8_ENGINE = os.path.expanduser('~/Dev/v8/d8')
  12.  
  13. TEMP_DIR = 'c:/temp'
  14.  
  15.  
  16. ########################################################################################################
  17.  
  18.  
  19. # Pick the JS engine to use for running the compiler. This engine must exist, or
  20. # nothing can be compiled.
  21. #
  22. # Recommendation: If you already have node installed, use that. Otherwise, build v8 or
  23. # spidermonkey from source. Any of these three is fine, as long as it's
  24. # a recent version (especially for v8 and spidermonkey).
  25.  
  26. COMPILER_ENGINE = NODE_JS
  27. #COMPILER_ENGINE = V8_ENGINE
  28. #COMPILER_ENGINE = SPIDERMONKEY_ENGINE
  29.  
  30.  
  31. # All JS engines to use when running the automatic tests. Not all the engines in this list
  32. # must exist (if they don't, they will be skipped in the test runner).
  33. #
  34. # Recommendation: If you already have node installed, use that. If you can, also build
  35. # spidermonkey from source as well to get more test coverage (node can't
  36. # run all the tests due to node issue 1669). v8 is currently not recommended
  37. # here because of v8 issue 1822.
  38.  
  39. JS_ENGINES = [NODE_JS]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement