Update WORKSPACE to use a prebuilt host toolchain

Change-Id: Iefc7ae6f02bf5ce22351da9cc1717f68ab2ae9ca
Reviewed-on: https://fuchsia-review.googlesource.com/c/template/driver/+/907969
Reviewed-by: Jiaming Li <lijiaming@google.com>
6 files changed
tree: 188f79b658b2fef6ada4a8a347bddbd3fe344f67
  1. manifests/
  2. scripts/
  3. third_party/
  4. tools/
  5. .bazelrc
  6. .gitignore
  7. .gitmodules
  8. AUTHORS
  9. BUILD.bazel
  10. CONTRIBUTING.md
  11. fuchsia_env.toml
  12. LICENSE
  13. OWNERS
  14. PATENTS
  15. README.md
  16. WORKSPACE.bazel
README.md

Fuchsia Driver Template Repository

This repository is a template that we will use when creating new driver repositories for Fuchsia.

Getting Started

To perform an initial bootstrap, execute the following:

  1. In a terminal, fetch all git submodules:

    git submodule init && git submodule update --recursive
    
  2. Bootstrap the build environment:

    scripts/bootstrap.sh
    
  3. Fetch and build the SDK:

    tools/bazel build @fuchsia_sdk//:fuchsia_toolchain_sdk
    

See the getting started guide for more info.