blob: 3d72c289f05b316f49900ae0e285924d1f306618 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<!--
Copyright (c) 2011 The Native Client Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
dt {
font-weight: bold;
}
dd {
margin-bottom: 12pt;
width: 600px;
}
</style>
<link href="http://code.google.com/css/codesite.css" rel="stylesheet"
type="text/css" />
<title>Native Client Examples</title>
</head>
<body>
<h2>Native Client Examples</h2>
<p>The examples are no longer pre-built in the SDK. To try out the Native
Client examples right now in your Chrome web browser, please see the
<a href="http://www.gonacl.com/dev/sdk.html">SDK page on GoNaCl.com</a> and
download the SDK examples from the
<a href="https://chrome.google.com/webstore/">Chrome Web Store</a>.</p>
<p>If you would like to build and run the examples within the SDK
then run these commands, starting from the examples directory:</p><br />
<strong>Windows</strong>
<blockquote><code>
cd %NACL_SDK_ROOT%\%NACL_TARGET_PLATFORM%\examples<br />
scons<br />
cd %NACL_SDK_ROOT%\staging<br />
httpd<br />
</code></blockquote>
<strong>Mac/Linux</strong>
<blockquote><code>
cd $NACL_SDK_ROOT/$NACL_TARGET_PLATFORM/examples<br />
./scons<br />
cd $NACL_SDK_ROOT/staging<br />
./httpd.py<br />
</code></blockquote>
<p>Happy hacking!</p>
</body>
</html>
|