Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/docs/build-gn.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ gn args out/foo
This opens an editor window for specifying the [`gn` arguments](https://gn.googlesource.com/gn/+/master/docs/reference.md). Alternatively, you can pass the arguments on the command line:

```bash
gn gen out/foo --args='is_debug=false target_cpu="x64" v8_target_cpu="arm64" use_goma=true'
gn gen out/foo --args='is_debug=false target_cpu="x64" v8_target_cpu="arm64"'
```

This generates build files for compiling V8 with the arm64 simulator in release mode using `goma` for compilation.
This generates build files for compiling V8 with the arm64 simulator in release mode.

For an overview of all available `gn` arguments, run:

Expand Down