diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Release-notes-for-0.47.0.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/markdown/Release-notes-for-0.47.0.md b/docs/markdown/Release-notes-for-0.47.0.md index 9736256..a427a72 100644 --- a/docs/markdown/Release-notes-for-0.47.0.md +++ b/docs/markdown/Release-notes-for-0.47.0.md @@ -34,11 +34,10 @@ The environment path should be set properly for the ARM compiler executables. The `--target`, `-mcpu` options with the appropriate values should be mentioned in the cross file as shown in the snippet below. -``` +```ini [properties] c_args = ['--target=arm-arm-none-eabi', '-mcpu=cortex-m0plus'] cpp_args = ['--target=arm-arm-none-eabi', '-mcpu=cortex-m0plus'] - ``` Note: @@ -106,7 +105,7 @@ When called without an input file, `configure_file` generates a C header file by default. A keyword argument was added to allow specifying the output format, for example for use with nasm or yasm: -``` +```meson conf = configuration_data() conf.set('FOO', 1) |