From 06c817e7a7bd5ee55abf077df6d5824870614fd2 Mon Sep 17 00:00:00 2001 From: Tatsuya Kawano Date: Sun, 5 Jun 2016 07:47:00 +0800 Subject: [PATCH] Update getting-started.md (WIP) --- 1.9/ja/book/getting-started.md | 71 ++++++++++++---------------------- 1 file changed, 24 insertions(+), 47 deletions(-) diff --git a/1.9/ja/book/getting-started.md b/1.9/ja/book/getting-started.md index 528544d6..1aac9d51 100644 --- a/1.9/ja/book/getting-started.md +++ b/1.9/ja/book/getting-started.md @@ -1,10 +1,10 @@ % はじめる - + -この一番最初のセクションでRustとツールの使い方をやっていきます。 +この一番最初の章でRustとツールの使い方をやっていきます。 最初にRustをインストールします。そしてお決まりの「Hello World」をやります。 最後にRustのビルドシステム兼パッケージマネージャのCargoについて話します。 @@ -12,10 +12,10 @@ # Rustのインストール - + Rustを使い始める最初のステップはインストールです。 -この章のコマンドでインターネットからRustのダウンロードをするのでインターネットへの接続が必要でしょう。 +このセクションでは、コマンドでインターネットからRustのダウンロードをするのでインターネットへの接続が必要でしょう。 @@ -61,6 +61,7 @@ Rustのサポートレベルは3階級に分かれていて、それぞれ違う | Target | std |rustc|cargo| notes | |-------------------------------|-----|-----|-----|----------------------------| +| `i686-pc-windows-msvc` | ✓ | ✓ | ✓ | 32-bit MSVC (Windows 7+) | | `x86_64-pc-windows-msvc` | ✓ | ✓ | ✓ | 64-bit MSVC (Windows 7+) | | `i686-pc-windows-gnu` | ✓ | ✓ | ✓ | 32-bit MinGW (Windows 7+) | | `x86_64-pc-windows-gnu` | ✓ | ✓ | ✓ | 64-bit MinGW (Windows 7+) | @@ -92,7 +93,13 @@ Rustのサポートレベルは3階級に分かれていて、それぞれ違う | Target | std |rustc|cargo| notes | |-------------------------------|-----|-----|-----|----------------------------| -| `i686-pc-windows-msvc` | ✓ | ✓ | ✓ | 32-bit MSVC (Windows 7+) | +| `x86_64-unknown-linux-musl` | ✓ | | | 64-bit Linux with MUSL | +| `arm-linux-androideabi` | ✓ | | | ARM Android | +| `arm-unknown-linux-gnueabi` | ✓ | ✓ | | ARM Linux (2.6.18+) | +| `arm-unknown-linux-gnueabihf` | ✓ | ✓ | | ARM Linux (2.6.18+) | +| `aarch64-unknown-linux-gnu` | ✓ | | | ARM64 Linux (2.6.18+) | +| `mips-unknown-linux-gnu` | ✓ | | | MIPS Linux (2.6.18+) | +| `mipsel-unknown-linux-gnu` | ✓ | | | MIPS (LE) Linux (2.6.18+) | ### 3級 @@ -110,28 +117,25 @@ Rustのサポートレベルは3階級に分かれていて、それぞれ違う | Target | std |rustc|cargo| notes | |-------------------------------|-----|-----|-----|----------------------------| -| `x86_64-unknown-linux-musl` | ✓ | | | 64-bit Linux with MUSL | -| `arm-linux-androideabi` | ✓ | | | ARM Android | | `i686-linux-android` | ✓ | | | 32-bit x86 Android | | `aarch64-linux-android` | ✓ | | | ARM64 Android | -| `arm-unknown-linux-gnueabi` | ✓ | ✓ | | ARM Linux (2.6.18+) | -| `arm-unknown-linux-gnueabihf` | ✓ | ✓ | | ARM Linux (2.6.18+) | -| `aarch64-unknown-linux-gnu` | ✓ | | | ARM64 Linux (2.6.18+) | -| `mips-unknown-linux-gnu` | ✓ | | | MIPS Linux (2.6.18+) | -| `mipsel-unknown-linux-gnu` | ✓ | | | MIPS (LE) Linux (2.6.18+) | | `powerpc-unknown-linux-gnu` | ✓ | | | PowerPC Linux (2.6.18+) | +| `powerpc64-unknown-linux-gnu` | ✓ | | | PPC64 Linux (2.6.18+) | +|`powerpc64le-unknown-linux-gnu`| ✓ | | | PPC64LE Linux (2.6.18+) | +|`armv7-unknown-linux-gnueabihf`| ✓ | | | ARMv7 Linux (2.6.18+) | | `i386-apple-ios` | ✓ | | | 32-bit x86 iOS | | `x86_64-apple-ios` | ✓ | | | 64-bit x86 iOS | | `armv7-apple-ios` | ✓ | | | ARM iOS | | `armv7s-apple-ios` | ✓ | | | ARM iOS | | `aarch64-apple-ios` | ✓ | | | ARM64 iOS | -| `i686-unknown-freebsd` | ✓ | ✓ | | 32-bit FreeBSD | -| `x86_64-unknown-freebsd` | ✓ | ✓ | | 64-bit FreeBSD | +| `i686-unknown-freebsd` | ✓ | ✓ | ✓ | 32-bit FreeBSD | +| `x86_64-unknown-freebsd` | ✓ | ✓ | ✓ | 64-bit FreeBSD | | `x86_64-unknown-openbsd` | ✓ | ✓ | | 64-bit OpenBSD | | `x86_64-unknown-netbsd` | ✓ | ✓ | | 64-bit NetBSD | | `x86_64-unknown-bitrig` | ✓ | ✓ | | 64-bit Bitrig | | `x86_64-unknown-dragonfly` | ✓ | ✓ | | 64-bit DragonFlyBSD | | `x86_64-rumprun-netbsd` | ✓ | | | 64-bit NetBSD Rump Kernel | +| `x86_64-sun-solaris` | ✓ | ✓ | | 64-bit Solaris/SunOS | | `i686-pc-windows-msvc` (XP) | ✓ | | | Windows XP support | | `x86_64-pc-windows-msvc` (XP) | ✓ | | | Windows XP support | @@ -151,47 +155,20 @@ LinuxかMacを使っているなら以下を入力するだけです $ curl -sSf https://static.rust-lang.org/rustup.sh | sh ``` - + このコマンドでスクリプトをダウンロードしインストールを始めます。 全て上手くいったら以下が表示される筈です。 ```text -Welcome to Rust. - -This script will download the Rust compiler and its package manager, Cargo, and -install them to /usr/local. You may install elsewhere by running this script -with the --prefix= option. - -The installer will run under ‘sudo’ and may ask you for your password. If you do -not want the script to run ‘sudo’ then pass it the --disable-sudo flag. - -You may uninstall later by running /usr/local/lib/rustlib/uninstall.sh, -or by running this script again with the --uninstall flag. - -Continue? (y/N) +Rust is ready to roll. ``` > 訳注: -> -> +> +> > ```text -> Rustへようこそ。 -> -> このスクリプトはRustコンパイラとそのパッケージマネージャCargoをダウンロードし、/usr/local -> へとインストールします。--prefix= オプションを使うことで他の場所へインストール -> 出来ます。 -> -> インストーラは「sudo」下で走るのでパスワードを尋きます。もし'sudo'を使ってほしくないなら -> --disable-sudo フラグを渡します。 -> -> You may uninstall later by running /usr/local/lib/rustlib/uninstall.sh, -> or by running this script again with the --uninstall flag. -> -> /usr/local/lib/rustlib/uninstall.shを実行するかこのスクリプトに--uninstallフラグを -> 付けて実行することで後程アンインストール出来ます。 -> -> 続けますか? (y/N) +> Rustを使う準備ができました。 > ``` @@ -208,7 +185,7 @@ Windowsを使っているなら適切な[インストーラ][install-page]をダ ## アンインストール - + Rustのアンインストールはインストールと同じくらい簡単です。 LinuxかMacならアンインストールスクリプトを使うだけです。