From 3a3d7f11b40c885fbdb60aa011c88bb1e2bc5e12 Mon Sep 17 00:00:00 2001 From: Marco Vanotti Date: Tue, 20 Nov 2018 16:00:51 -0800 Subject: docs: require arm64 build for fuchsia I am adding a note in the fuchsia docs to specify that the caller should also build fuchsia for arm64. This is because the make extract command will call generate_fidl for TARGETARCH amd64 and arm64. If you happen to have an old tree for arm64, your amd64 changes might be overwritten by the arm64 ones. --- docs/fuchsia.md | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'docs') diff --git a/docs/fuchsia.md b/docs/fuchsia.md index 747d22a96..c5db3e26d 100644 --- a/docs/fuchsia.md +++ b/docs/fuchsia.md @@ -9,6 +9,13 @@ fx set x64 --packages garnet/packages/products/sshd fx full-build ``` +You need to build fuchsia for both arm64 and amd64: + +``` +fx set arm64 --packages garnet/packages/products/sshd +fx full-build +``` + To update descriptions run: ``` make extract TARGETOS=fuchsia SOURCEDIR=/path/to/fuchsia/checkout -- cgit mrf-deployment