Merge: share/libgc: option to use a local version of the source pkgs
[nit.git] / examples / pnacl / converter / README
1 Steps to make the example work :
2
3 1. Install the native client SDK (https://developer.chrome.com/native-client/sdk/download).
4
5 2. Declare the environment variable NACL_SDK_ROOT as the root of the target platform within the SDK (ex: ~/nacl_sdk/pepper_34/) :
6         $ export NACL_SDK_ROOT=/path/to/nacl_sdk/pepper_[your_version]
7
8 3. Compile the Nit code with: `nitc --semi-global converter.nit` or `make`.
9
10 You must use the '--semi-global' (or `--global`) option. Some features in the standard library are not supported by the NaCL platform, the global compiler do not try to compile them.
11
12 4. Start a local server using: `make serve`.
13
14 5. Set up the Chrome browser :
15  - PNaCl is enabled by default in Chrome version 31 and later.
16  - For a better development experience, it’s also recommended to disable the Chrome cache : 
17         - Open Chrome’s developer tools by clicking the menu icon menu-icon and choosing Tools > Developer tools.
18         - Click the gear icon gear-icon in the bottom right corner of the Chrome window.
19         - Under the “General” settings, check the box next to “Disable cache (while DevTools is open)”.
20         - Keep the Developer Tools pane open while developing Native Client applications.
21
22 6. You can now access the application in Chrome at the address `http://localhost:5103/`.