diff --git a/.gitignore b/.gitignore index a4cab4e2b79280be251ed9a38c77fb1ab6c44ab2..a0f745c087a083d535774b42868170077bcb622f 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 ef8afa20398dad90c7b92c309860749dffc91d36..2a01aca70ebe984e2e5c01d675c75a0eaeb1d2e3 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 569757600e48d20d57270195b89e37d69cd0fffd..8dc35cdbde62738e1a2f3b3c2682727b6a17b107 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.