GN C++ Frontend SDK

Prerequisites

Supported host platforms and build systems

The GN C++ Frontend SDK samples only support Linux hosts and the GN build system.

Supported Fuchsia device CPU architectures

Fuchsia devices or emulators must have one of the following CPU architectures to run Fuchsia:

  • x64
  • arm64

Setup

  1. Install required dependencies:

    1. sudo apt-get install curl unzip python2
  2. Clone the samples repo and submodules:

    1. git clone https://fuchsia.googlesource.com/samples --recursive

    Note: If you have already cloned this repo without the --recursive flag you can download the submodules: git submodule update --init --recursive

  3. Change directory to the root of the repo and run the tests:

    1. cd samples
    2. ./scripts/setup-and-test.sh

    This script:

    • Downloads additional build tool dependencies (may take 5-30 minutes)
    • Builds the samples
    • Runs tests on your host

    If the script fails with an error, address the issue and run the script again.

Testing on a Fuchsia compatible device

Note: This guide assumes a x64 Fuchsia compatible device. For Fuchsia compatible ARM devices replace x64 with arm64 and generic-x64 and generic-arm64 or other compatible image name in the instructions below. For a full list of available images install gsutil and run: gsutil ls gs://fuchsia/development/$(gsutil cat gs://fuchsia/development/LATEST_LINUX)/images

  1. Setup your device and install Zedboot: Find the instructions for your device (e.g. a NUC or Pixelbook) to setup and install Zedboot on your device.

  2. From the samples directory, create Ninja build files for the samples by running the following command:

    1. buildtools/linux64/gn gen out/generic-x64 --args='target_os="fuchsia" target_cpu="x64"'
  3. Build the samples by executing the Ninja build files you created in the previous step:

    1. buildtools/linux64/ninja -C out/generic-x64
  4. Make sure your Fuchsia device is booted to Zedboot and connected to your host machine the pave your device:

    1. third_party/fuchsia-sdk/bin/fpave.sh --image generic-x64
  5. Start a package server from your host machine:

    1. third_party/fuchsia-sdk/bin/fserve.sh --image generic-x64
  6. To publish your packages open another another terminal window and run:

    1. third_party/fuchsia-sdk/bin/fpublish.sh out/generic-x64/hello_far.far
    2. third_party/fuchsia-sdk/bin/fpublish.sh out/generic-x64/rot13_server.far
    3. third_party/fuchsia-sdk/bin/fpublish.sh out/generic-x64/rot13_client.far
  7. Run the sample components on your Fuchsia device:

    1. SSH to the device:

      1. third_party/fuchsia-sdk/bin/fssh.sh
    2. Once SSHed into the device, run the hello world component on the device:

      1. run fuchsia-pkg://fuchsia.com/hello_world#meta/hello_world.cmx
    3. Run the rot13 server:

      1. run fuchsia-pkg://fuchsia.com/rot13_server#meta/rot13_server.cmx
    4. In a new terminal window on your host machine, open a new ssh connection to your device, and run the rot13 client:

      1. third_party/fuchsia-sdk/bin/fssh.sh
      2. run fuchsia-pkg://fuchsia.com/rot13_client#meta/rot13_client.cmx

Links