Skip to content

Commit af8c867

Browse files
committed
body-jekyll update
1 parent 016d97e commit af8c867

File tree

1 file changed

+18
-11
lines changed

1 file changed

+18
-11
lines changed

scripts/templates/body-jekyll-release-post-part-1-liquid.md

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,19 @@ title: xPack GNU RISC-V Embedded GCC v{{ XBB_RELEASE_VERSION }} released
33

44
TODO: select one summary
55

6-
summary: "Version **{{ XBB_RELEASE_VERSION }}** is a maintenance release; it ...."
6+
summary: "Version **{{ XBB_RELEASE_VERSION }}** is a maintenance release; it fixes <...>."
77

88
summary: "Version **{{ XBB_RELEASE_VERSION }}** is a new release; it follows the GNU GCC release."
99

10+
gcc_version: "12.2.0"
11+
binutils_version: "2.38"
12+
newlib_version: "4.2.0"
13+
gdb_version: "12.1"
14+
python_version: "3.10"
15+
1016
version: "{{ XBB_RELEASE_VERSION }}"
11-
npm_subversion: 1
17+
npm_subversion: "1"
18+
1219
download_url: https://github.com/xpack-dev-tools/riscv-none-elf-gcc-xpack/releases/tag/v{{ XBB_RELEASE_VERSION }}/
1320

1421
date: {{ RELEASE_DATE }}
@@ -79,22 +86,22 @@ a dependency for a project is quite easy:
7986
cd my-project
8087
xpm init # Only at first use.
8188

82-
xpm install @xpack-dev-tools/riscv-none-elf-gcc@latest
89+
xpm install @xpack-dev-tools/riscv-none-elf-gcc@latest --verbose
8390

8491
ls -l xpacks/.bin
8592
```
8693

8794
To install this specific version, use:
8895

8996
```sh
90-
xpm install @xpack-dev-tools/riscv-none-elf-gcc@{% raw %}{{ page.version }}.{{ page.npm_subversion }}{% endraw %}
97+
xpm install @xpack-dev-tools/riscv-none-elf-gcc@{% raw %}{{ page.version }}.{{ page.npm_subversion }}{% endraw %} --verbose
9198
```
9299

93100
For xPacks aware tools, like the **Eclipse Embedded C/C++ plug-ins**,
94101
it is also possible to install GNU RISC-V Embedded GCC globally, in the user home folder.
95102

96103
```sh
97-
xpm install --global @xpack-dev-tools/riscv-none-elf-gcc@latest
104+
xpm install --global @xpack-dev-tools/riscv-none-elf-gcc@latest --verbose
98105
```
99106

100107
Eclipse will automatically
@@ -122,11 +129,11 @@ xpm uninstall --global @xpack-dev-tools/riscv-none-elf-gcc
122129
The xPack GNU RISC-V Embedded GCC use the official sources,
123130
with no functional changes:
124131

125-
- GCC 12.2.0
126-
- binutils 2.38
127-
- gdb 12.1
128-
- newlib 4.2.0.20211231
129-
- python 3.10.4
132+
- GCC {% raw %}{{ page.gcc_version }}{% endraw %}
133+
- binutils {% raw %}{{ page.binutils_version }}{% endraw %}
134+
- newlib {% raw %}{{ page.newlib_version }}{% endraw %}
135+
- gdb {% raw %}{{ page.gdb_version }}{% endraw %}
136+
- python {% raw %}{{ page.python_version }}{% endraw %}
130137

131138
## Supported libraries
132139

@@ -245,7 +252,7 @@ be compiled with
245252

246253
Support for Python scripting was added to GDB. This distribution provides
247254
a separate binary, `riscv-none-elf-gdb-py3` with
248-
support for **Python 3**.
255+
support for **Python {% raw %}{{ page.python_version }}{% endraw %}**.
249256

250257
The Python 3 run-time is included, so GDB does not need any version of
251258
Python to be installed, and is insensitive to the presence of other

0 commit comments

Comments
 (0)