quickstart-standard-package-environment.md 4.1 KB
Newer Older
D
duangavin123 已提交
1
# Setting Up Ubuntu Development Environment with Installation Package<a name="EN-US_TOPIC_0000001119804790"></a>
D
duangavin123 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15

-   [Installing Dependent Tools](#section18431165519244)
-   [Obtaining Standard-System Source Code](#section113751052102517)
    -   [Prerequisites](#section102871547153314)
    -   [Procedure](#section429012478331)

-   [Running prebuilts](#section0495320152619)
-   [Building Source Code](#section1664835963517)

## Installing Dependent Tools<a name="section18431165519244"></a>

The installation command is as follows:

```
W
wanyanglan 已提交
16
sudo apt-get update && sudo apt-get install binutils git git-lfs gnupg flex bison gperf build-essential zip curl zlib1g-dev gcc-multilib g++-multilib libc6-dev-i386 lib32ncurses5-dev x11proto-core-dev libx11-dev lib32z1-dev ccache libgl1-mesa-dev libxml2-utils xsltproc unzip m4 bc gnutls-bin python3.8 python3-pip ruby
D
duangavin123 已提交
17 18
```

D
duangavin123 已提交
19
>![](../public_sys-resources/icon-note.gif) **NOTE:** 
D
duangavin123 已提交
20
>The preceding command is applicable to Ubuntu 18.04. For other Ubuntu versions, modify the preceding installation command based on the installation package name. Python 3.7 or later is required. Python 3.8 is used as an example.
D
duangavin123 已提交
21 22 23 24 25 26 27

## Obtaining Standard-System Source Code<a name="section113751052102517"></a>

### Prerequisites<a name="section102871547153314"></a>

1.  Register your account with Gitee.
2.  Register an SSH public key for access to Gitee.
28
3.  Install the  [git client](http://git-scm.com/book/en/v2/Getting-Started-Installing-Git)  and  [git-lfs](https://gitee.com/vcs-all-in-one/git-lfs?_from=gitee_search#downloading), and configure basic user information.
D
duangavin123 已提交
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93

    ```
    git config --global user.name "yourname"
    git config --global user.email "your-email-address"
    git config --global credential.helper store
    ```

4.  Run the following commands to install the  **repo**  tool:

    ```
    curl -s https://gitee.com/oschina/repo/raw/fork_flow/repo-py3 > /usr/local/bin/repo  # If you do not have the access permission to this directory, download the tool to any other accessible directory and configure the directory to the environment variable.
    chmod a+x /usr/local/bin/repo
    pip3 install -i https://repo.huaweicloud.com/repository/pypi/simple requests
    ```


### Procedure<a name="section429012478331"></a>

Method 1 \(recommended\): Use the  **repo**  tool to download the source code over SSH. \(You must have registered an SSH public key for access to Gitee.\)

```
repo init -u git@gitee.com:openharmony/manifest.git -b master --no-repo-verify
repo sync -c
repo forall -c 'git lfs pull'
```

Method 2: Use the  **repo**  tool to download the source code over HTTPS.

```
repo init -u https://gitee.com/openharmony/manifest.git -b master --no-repo-verify
repo sync -c
repo forall -c 'git lfs pull'
```

## Running prebuilts<a name="section0495320152619"></a>

Go to the root directory of the source code and run the following script to install the compiler and binary tool:

```
bash build/prebuilts_download.sh
```

By default, the downloaded prebuilts binary file is stored in  **OpenHarmony\_2.0\_canary\_prebuilts**  \(which is in the same directory as  **OpenHarmony**\).

## Building Source Code<a name="section1664835963517"></a>

Perform the following operations in the Linux environment:

1.  Go to the root directory of the source code and run the following command to build the distribution.

    ```
    ./build.sh --product-name {product_name}
    ```

    **product\_name**  indicates the product supported by the current distribution, for example,  **Hi3516DV300**.

2.  Check the build result. After the build is complete, the following information is displayed in the log:

    ```
     build system image successful.
    =====build Hi3516DV300 successful.
    ```

    Files generated during the build are stored in the  **out/ohos-arm-release/**  directory, and the generated image is stored in the  **out/ohos-arm-release/packages/phone/images/**  directory.

D
duangavin123 已提交
94
    >![](../public_sys-resources/icon-note.gif) **NOTE:** 
D
duangavin123 已提交
95
    >For details about module-specific build operations, see  [Building Guidelines](../subsystems/subsys-build-standard-large.md).
D
duangavin123 已提交
96

D
duangavin123 已提交
97
3.  Burn the image. For details, see  [Burning Images](quickstart-standard-burn.md).
D
duangavin123 已提交
98