Skip to content

Commit abbf3e7

Browse files
committed
list supported triplets in --help
1 parent 2082d9e commit abbf3e7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/AutoBuild.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ end
4848
minimum_compat(compat::String) =
4949
minimum(VersionNumber(rng.lower.t) for rng in PKG_VERSIONS.semver_spec(compat).ranges)
5050

51+
const PLATFORM_LIST = join(map(triplet, supported_platforms()), "\n ")
52+
5153
const BUILD_HELP = (
5254
"""
5355
Usage: build_tarballs.jl [target1,target2,...] [--help]
@@ -116,6 +118,9 @@ const BUILD_HELP = (
116118
julia build_tarballs.jl x86_64-linux-gnu,i686-linux-gnu
117119
This builds two tarballs for the two platforms given, with a
118120
minimum of output messages.
121+
122+
Supported Platforms:
123+
$(PLATFORM_LIST)
119124
"""
120125
)
121126

0 commit comments

Comments
 (0)