diff options
author | Richard Biener <rguenther@suse.de> | 2025-03-28 15:20:16 +0100 |
---|---|---|
committer | Richard Biener <rguenth@gcc.gnu.org> | 2025-03-28 15:38:17 +0100 |
commit | bb389fb04b07a491d2ca0380db08b8c43b4239b9 (patch) | |
tree | 1ebb134e5cff46d421ce6a70febc6d5efe5665cd | |
parent | dd9ed951f4002419ceff744bbd87ae9b8affdaf4 (diff) | |
download | gcc-bb389fb04b07a491d2ca0380db08b8c43b4239b9.zip gcc-bb389fb04b07a491d2ca0380db08b8c43b4239b9.tar.gz gcc-bb389fb04b07a491d2ca0380db08b8c43b4239b9.tar.bz2 |
other/119510 - use --enable-languages=default,cobol for release tarballs
The following adds cobol to the set of languages built during release
tarball building so the bison and flex generated sources for cobol
are included in the tarball.
PR other/119510
maintainer-scripts/
* gcc_release: Use --enable-languages=default,cobol
when building generated files.
-rwxr-xr-x | maintainer-scripts/gcc_release | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maintainer-scripts/gcc_release b/maintainer-scripts/gcc_release index 42bb7f6..471a10c 100755 --- a/maintainer-scripts/gcc_release +++ b/maintainer-scripts/gcc_release @@ -267,7 +267,7 @@ EOF esac fi contrib/gcc_build -d ${SOURCE_DIRECTORY} -o ${OBJECT_DIRECTORY} \ - -c "--enable-generated-files-in-srcdir --disable-multilib" \ + -c "--enable-languages=default,cobol --enable-generated-files-in-srcdir --disable-multilib" \ -m "-j$num_cpus" build || \ error "Could not rebuild GCC" fi |