diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2020-03-20 21:48:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-20 21:48:34 -0400 |
commit | 0adc86f105204b2475126c36dfc10e678f67df56 (patch) | |
tree | ff50bf401208fcb20e8828fbca10433b460fdeb0 /std/manual.md | |
parent | 77a44163fb22139a8269eb216014640aaf7a7fa8 (diff) |
Remove DENO_BUILD_MODE and DENO_BUILD_PATH (#4431)
* Remove DENO_BUILD_MODE and DENO_BUILD_PATH
Also remove outdated docs related to ninja/gn.
* fix
* remove parameter to build_mode()
* remove arg parsing from benchmark.py
Diffstat (limited to 'std/manual.md')
-rw-r--r-- | std/manual.md | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/std/manual.md b/std/manual.md index c7c9cef80..3d74259ef 100644 --- a/std/manual.md +++ b/std/manual.md @@ -1603,40 +1603,6 @@ Format the code: ./tools/format.py ``` -#### Other Useful Commands - -```bash -# Call ninja manually. -ninja -C target/debug - -# Build a release binary. -cargo build --release - -# List executable targets. -gn --root=core/libdeno ls target/debug "//:*" --as=output --type=executable - -# List build configuration. -gn --root=core/libdeno args target/debug/ --list - -# Edit build configuration. -gn --root=core/libdeno args target/debug/ - -# Describe a target. -gn --root=core/libdeno desc target/debug/ :deno -gn help - -# Update third_party modules -git submodule update - -# Skip downloading binary build tools and point the build -# to the system provided ones (for packagers of deno ...). -export DENO_BUILD_ARGS="clang_base_path=/usr clang_use_chrome_plugins=false" -DENO_NO_BINARY_DOWNLOAD=1 DENO_GN_PATH=/usr/bin/gn cargo build -``` - -Environment variables: `DENO_BUILD_MODE`, `DENO_BUILD_PATH`, `DENO_BUILD_ARGS`, -`DENO_DIR`, `DENO_GN_PATH`, `DENO_NO_BINARY_DOWNLOAD`. - ### Submitting a Pull Request Before submitting, please make sure the following is done: |