美文网首页
nacl_sdk安装

nacl_sdk安装

作者: 泰迪杂谈 | 来源:发表于2017-11-09 09:46 被阅读0次

    google Native Client SDK的安装译文.

    • 必要环境
    1. Python 2.7
    2. Make
      在mac系统上安装Xcode Developer Tools.之后安装Xcode, 进入 XCode 菜单, 打开Preferences对话框之后选择Downloads and Component,验证命令行工具是否已安装。
      在windows系统上 Native Client SDK已经包含GUN Make副本.
    • 平台支持
      Native Client支持多个操作系统,包括 Windows, Linux, OSX, 以及 ChromeOS.它支持多种架构,包括 x86-32, x86-64, ARM, a以及 MIPS.

    • 安装SDK
      下载并解压
    1. 下载SDK update zip file.
    2. 解压文件
      • Mac/Linux系统,在控制台执行命令unzip nacl_sdk.zip
      • 在windows系统中,右键解压
        之后会创建一个文件夹 nacl_sdk其包含以下文件或目录:
      • nacl_sdk(windows中是naclsdk.bat)作用是更新应用程序,它是下载更新的命令。
      • sdk_cache 清单中列出了已经下载的包
      • sdk_tools 由naclsdk命令执行

      安装稳定的包

      1. 进入之前解压的目录中运行naclsdk命令。

      • 在 Mac/Linux系统中:
    $ cd nacl_sdk
    $ ./naclsdk list
    
    • 在 Windows系统中:
    > cd nacl_sdk
    > naclsdk list
    

    你应该看到类似下面的输出:

    Bundles:
     I: installed
     *: update available
    
      I  sdk_tools (stable)
         vs_addin (dev)
         pepper_31 (post_stable)
         pepper_32 (post_stable)
         pepper_33 (post_stable)
         pepper_34 (post_stable)
         pepper_35 (stable)
         pepper_36 (beta)
         pepper_37 (dev)
         pepper_canary (canary)
    
    1. 运行naclsdk的update命令升级最新版本
    • 在 Mac/Linux系统中:
    $ ./naclsdk update
    
    • 在Windows系统中:
    > naclsdk update
    

    默认情况下只会下载稳定版本,比如现在最新版本为 pepper_35,会执行下载该包,如果你要下载 pepper_36你必须明确指定:

    $ ./naclsdk update pepper_36
    

    更新包

    在命令行运行naclsdk命令。这显示了可用包的列表,并验证你已经安装了哪些包。

    • 在Mac/Linux系统中:
    $ ./naclsdk list
    
    • 在Windows系统中:
    > naclsdk list
    

    旁边标*的表示有更新可用.例如:

    Bundles:
    I: installed
    *: update available
    
     I  sdk_tools (stable)
        vs_addin (dev)
        pepper_31 (post_stable)
        pepper_32 (post_stable)
        pepper_33 (post_stable)
        pepper_34 (post_stable)
     I* pepper_35 (stable)
        pepper_36 (beta)
        pepper_37 (dev)
        pepper_canary (canary)
    

    如果此时你执行naclsdk update,则会弹出类似于以下警告:

    WARNING: pepper_35 already exists, but has an update available. Run update
    with the --force option to overwrite the existing directory. Warning: This
    will overwrite any modifications you have made within this directory.
    
    1. 要下载并更新包请运行:
    • 在Mac/Linux系统中:
    $ ./naclsdk update --force
    
    • 在Windows系统中:
    > naclsdk update --force
    

    naclsdk的帮助工具:

    1. 关于naclsdk的更多信息请运行:
    • 在Mac/Linux系统中:
    $ ./naclsdk help
    
    • 在Windows系统中:
    > naclsdk help
    

    相关文章

      网友评论

          本文标题:nacl_sdk安装

          本文链接:https://www.haomeiwen.com/subject/nxcpmxtx.html