Skip to content

Commit c0c3f83

Browse files
committed
Update with changes found during 1.8.9 release
Sign tags. Re-enable pacbti targets in arm gnu toolchain build. Signed-off-by: Keith Packard <[email protected]>
1 parent db4d0fe commit c0c3f83

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

doc/releasing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ picolibc:
5959

6060
10. Tag release
6161

62-
$ git tag -m'Version <version>' <version> main
62+
$ git tag -s -m'Version <version>' <version> main
6363

6464
11. Use arm configuration to build bits for the Arm embedded toolkit:
6565

@@ -124,7 +124,7 @@ how to build debian packages:
124124

125125
10. Tag release
126126

127-
$ git tag -m'debian: Version <version>-1' <version>-1 debian
127+
$ git tag -s -m'debian: Version <version>-1' <version>-1 debian
128128

129129
11. Push tags and branches to salsa
130130

scripts/do-arm-tk

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,23 @@ mkdir -p "$MINSIZE_DIR" "$RELEASE_DIR" "$DESTDIR"
4242
set -e
4343

4444

45+
#build_options=-Dmultilib-exclude=pacbti
46+
build_options=
47+
4548
echo '###################################'
46-
echo '####' ../../scripts/do-arm-configure -Dsysroot-install=true --buildtype=minsize -Dmultilib-exclude=pacbti
49+
echo '####' ../../scripts/do-arm-configure -Dsysroot-install=true --buildtype=minsize $build_options
4750
echo '###################################'
4851

4952
cd "$MINSIZE_DIR"
50-
../../scripts/do-arm-configure -Dsysroot-install=true --buildtype=minsize -Dmultilib-exclude=pacbti
53+
../../scripts/do-arm-configure -Dsysroot-install=true --buildtype=minsize $build_options
5154
ninja test install
5255

5356
echo '###################################'
54-
echo '####' ../../scripts/do-arm-configure -Dsysroot-install=true -Dbuild-type-subdir=release --buildtype=release -Dmultilib-exclude=pacbti
57+
echo '####' ../../scripts/do-arm-configure -Dsysroot-install=true -Dbuild-type-subdir=release --buildtype=release $build_options
5558
echo '###################################'
5659

5760
cd "$RELEASE_DIR"
58-
../../scripts/do-arm-configure -Dsysroot-install=true -Dbuild-type-subdir=release --buildtype=release -Dmultilib-exclude=pacbti
61+
../../scripts/do-arm-configure -Dsysroot-install=true -Dbuild-type-subdir=release --buildtype=release $build_options
5962
ninja test install
6063

6164
cd "$DESTDIR"/"$ARM_TK"

0 commit comments

Comments
 (0)