Skip to content

Commit 01d77bc

Browse files
committed
Enable Algol68 build in gcc trunk
Algol68 frontend has been merged in gcc trunk. https://inbox.sourceware.org/gcc-patches/20251130010654.18879-3-jose.marchesi@oracle.com/ refs compiler-explorer/compiler-explorer#8310 Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
1 parent 0c61834 commit 01d77bc

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

build/build.sh

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ elif echo "${VERSION}" | grep 'trunk'; then
151151
URL=git://gcc.gnu.org/git/gcc.git
152152
BRANCH=master
153153
MAJOR=16
154-
MAJOR_MINOR=15-trunk
155-
LANGUAGES="${LANGUAGES},go,d,rust,m2,cobol"
154+
MAJOR_MINOR=16-trunk
155+
LANGUAGES="${LANGUAGES},go,d,rust,m2,cobol,algol68"
156156
VERSION=trunk-$(date +%Y%m%d)
157157
elif echo "${VERSION}" | grep 'renovated'; then
158158
SUB_VERSION=$(echo "${VERSION}" | cut -d'-' -f2)
@@ -194,6 +194,9 @@ else
194194
# Languages introduced in 15
195195
if [[ "${MAJOR}" -ge 15 ]]; then LANGUAGES=${LANGUAGES},cobol; fi
196196

197+
# Languages introduced in 16
198+
if [[ "${MAJOR}" -ge 16 ]]; then LANGUAGES=${LANGUAGES},algol68; fi
199+
197200
fi
198201

199202
## If version is prefixed by "assertions-", do the extra steps we want for the

0 commit comments

Comments
 (0)