Skip to content

Commit

Permalink
Merge pull request #1255 from KeilChris/fix_for_issue_1245
Browse files Browse the repository at this point in the history
Adapted command line to the latest changes
  • Loading branch information
jasonrandrews authored Sep 16, 2024
2 parents e862f2c + abdf573 commit de08c1a
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The following commands help you to work with `vcpkg`. The most important one is
#### Activate tools specified by vcpkg-configuration.json

```bash { output_lines = "2-8" }
vcpkg activate
vcpkg-shell activate

warning: vcpkg-artifacts is experimental and may change at any time.
Artifact Version Status Dependency Summary
Expand All @@ -28,7 +28,7 @@ microsoft:tools/ninja-build/ninja 1.10.2 installed Ninja is a
#### Deactivate artifacts specified by vcpkg-configuration.json
```bash { output_lines = "2-4" }
vcpkg deactivate
vcpkg-shell deactivate
warning: vcpkg-artifacts is experimental and may change at any time.
Deactivating: /Users/myuser/projects/myproject
Expand All @@ -37,7 +37,7 @@ Deactivating: /Users/myuser/projects/myproject
#### Activating tools without vcpkg-configuration.json
```bash { output_lines = "2-5" }
vcpkg use cmsis-toolbox
vcpkg-shell use cmsis-toolbox
warning: vcpkg-artifacts is experimental and may change at any time.
Artifact Version Status Dependency Summary
Expand All @@ -47,7 +47,7 @@ arm:tools/open-cmsis-pack/cmsis-toolbox 2.0.0 installed Arm distrib
#### Retrieve all available versions of a tool
```bash { output_lines = "2-14" }
vcpkg use open-cmsis-pack
vcpkg-shell use open-cmsis-pack
warning: vcpkg-artifacts is experimental and may change at any time.
error: Unable to resolve artifact: open-cmsis-pack
Expand All @@ -68,7 +68,7 @@ Possible matches:
#### For example, tools
```bash { output_lines = "2-16" }
vcpkg find artifact tools
vcpkg-shell find artifact tools
warning: vcpkg-artifacts is experimental and may change at any time.
Artifact Version Summary
Expand All @@ -85,7 +85,7 @@ arm:tools/arm/uv2csolution v1.0.0 *.uvprojx/*.uvmpw to csol
#### For example, compilers
```bash { output_lines = "2-9" }
vcpkg find artifact compilers
vcpkg-shell find artifact compilers
warning: vcpkg-artifacts is experimental and may change at any time.
Artifact Version Summary
Expand All @@ -100,27 +100,27 @@ arm:compilers/arm/armclang 6.20.0
#### Create a new vcpkg-configuration.json file
```shell
vcpkg new --application
vcpkg-shell new --application
```
#### Add artifact to vcpkg-configuration.json file
```shell
vcpkg add artifact cmake
vcpkg-shell add artifact cmake
```
#### Remove artifact to vcpkg-configuration.json file
```shell
vcpkg remove microsoft:tools/kitware/cmake
vcpkg-shell remove microsoft:tools/kitware/cmake
```
#### Update a registry
For example, the `arm` registry:
```shell
vcpkg x-update-registry arm
vcpkg-shell x-update-registry arm
```
Before using the Arm Compiler, you need to activate a license. The next step shows how to do that.

0 comments on commit de08c1a

Please sign in to comment.