From 674ab23a119ec644eab68ba0482b7154fb8e20ac Mon Sep 17 00:00:00 2001 From: shining Date: Fri, 28 Feb 2020 11:25:56 +0800 Subject: [PATCH] Clean the out directory in doc and gitignore Use the output instead of the out in the gitignore. Use the output directory instead of the out directory in the Developer_Guide. --- .gitignore | 2 +- doc/cn/Developer_Guide.md | 4 ++-- doc/en/Developer_Guide.md | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index a4cab4e2b7..a0f745c087 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,5 @@ tools/ninja* tools/gn* build/logs* libjava-core -out +output diff --git a/doc/cn/Developer_Guide.md b/doc/cn/Developer_Guide.md index ef8afa2039..2a01aca70e 100644 --- a/doc/cn/Developer_Guide.md +++ b/doc/cn/Developer_Guide.md @@ -16,7 +16,7 @@ ## 源码编译 -在openarkcompiler目录下执行以下命令,编译出OpenArkCompiler,默认输出路径 openarkcompiler/out/bin。 +在openarkcompiler目录下执行以下命令,编译出OpenArkCompiler,默认输出路径 openarkcompiler/output/bin。 ``` source build/envsetup.sh @@ -24,7 +24,7 @@ make ``` 命令说明: -- `source build/envsetup.sh` 初始化环境,将OpenArkCompiler工具链路径openarkcompiler/out/bin设置到环境变量中; +- `source build/envsetup.sh` 初始化环境,将OpenArkCompiler工具链路径openarkcompiler/output/bin设置到环境变量中; - `make` 编译OpenArkCompiler的Release版本; - `make BUILD_TYPE=DEBUG` 编译OpenArkCompiler的Debug版本。 diff --git a/doc/en/Developer_Guide.md b/doc/en/Developer_Guide.md index 569757600e..8dc35cdbde 100644 --- a/doc/en/Developer_Guide.md +++ b/doc/en/Developer_Guide.md @@ -17,7 +17,7 @@ You can download the OpenArkCompiler source code in `Clone` or `Download` mode. ## Compiling Source Code -Run the following command in the openarkcompiler directory to compile OpenArkCompiler. The output path is openarkcompiler/out/bin by default. +Run the following command in the openarkcompiler directory to compile OpenArkCompiler. The output path is openarkcompiler/output/bin by default. ``` source build/envsetup.sh @@ -25,7 +25,7 @@ make ``` Command description: -- `source build/envsetup.sh`: Initialize the environment and add the toolchain path openarkcompiler/out/bin of OpenArkCompiler to environment variables. +- `source build/envsetup.sh`: Initialize the environment and add the toolchain path openarkcompiler/output/bin of OpenArkCompiler to environment variables. - `make`: Compile the release version of OpenArkCompiler. - `make BUILD_TYPE=DEBUG`: Compile the debug version of OpenArkCompiler. -- Gitee