aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorBryan Hundven <bryanhundven@gmail.com>2023-01-16 11:11:52 -0800
committerGitHub <noreply@github.com>2023-01-16 11:11:52 -0800
commitaa6cc4d7f1c0e82bb40981ff738792de462ebc50 (patch)
treed42cfd88331421cee5af397f0812a2754beea49f /config
parent691b1c5d7fde5e88ad6186728c4a5f2b17b1740b (diff)
parent376a289777fcd33465cec5c2e5db35523fa3265a (diff)
downloadcrosstool-ng-aa6cc4d7f1c0e82bb40981ff738792de462ebc50.tar.gz
crosstool-ng-aa6cc4d7f1c0e82bb40981ff738792de462ebc50.tar.bz2
crosstool-ng-aa6cc4d7f1c0e82bb40981ff738792de462ebc50.zip
Merge pull request #1763 from cpackham/tarball
Add option to build toolchain tarball
Diffstat (limited to 'config')
-rw-r--r--config/global/paths.in28
1 files changed, 28 insertions, 0 deletions
diff --git a/config/global/paths.in b/config/global/paths.in
index 82ee4b39..e4cf7024 100644
--- a/config/global/paths.in
+++ b/config/global/paths.in
@@ -137,3 +137,31 @@ config STRIP_TARGET_TOOLCHAIN_EXECUTABLES
An install-strip make target is provided that installs stripped
executables, and may install libraries with unneeded or debugging
sections stripped.
+
+config TARBALL_RESULT
+ bool
+ depends on EXPERIMENTAL
+ prompt "Create binary toolchain tarball"
+ default n
+ help
+ Create tarball of the final binary toolchain.
+
+if TARBALL_RESULT
+
+config TARBALL_RESULT_DIR
+ string
+ depends on TARBALL_RESULT
+ prompt "Output directory"
+ default "${CT_TOP_DIR}"
+ help
+ Directory where tarball will be created.
+
+config TARBALL_RESULT_FILENAME
+ string
+ depends on TARBALL_RESULT
+ prompt "Output filename"
+ default "toolchain${CT_TOOLCHAIN_PKGVERSION:+-${CT_TOOLCHAIN_PKGVERSION}}-${CT_HOST:+HOST-${CT_HOST}-}${CT_TARGET}"
+ help
+ Filename for toolchain tarball, without extension.
+
+endif