Fără Descriere

Jonathan Marler faceefceb6 zig update: update zarc 3 ani în urmă
.github faceefceb6 zig update: update zarc 3 ani în urmă
.gitattributes d3cc334855 fix eol to be lf 3 ani în urmă
.gitignore ea1f4a3bed convert BASH test to Zig so we can start testing on Windows 3 ani în urmă
GitRepoStep.zig d279f5d336 zig update: OpenFlags 3 ani în urmă
README.md 6f4babbe3b normalize install dir, update README 3 ani în urmă
build.zig b0068ffd40 zig update 3 ani în urmă
build2.zig faceefceb6 zig update: update zarc 3 ani în urmă
fixdeletetree.zig 42f68cb9b4 fix bug in fixdeletetree.zig 3 ani în urmă
test.zig 11ca142f6b fix clean (mostly for windows) 3 ani în urmă
win32exelink.zig 36616a7067 Use an "exelink" instead of a batch file on Windows 3 ani în urmă
zigetsha d279f5d336 zig update: OpenFlags 3 ani în urmă
zigup.zig cdddb97657 Return 0 code with --help command 3 ani în urmă

README.md

zigup

Download and manage zig compilers.

Usage

# fetch a compiler and set it as the default
zigup <version>
zigup master
zigup 0.6.0

# fetch a compiler only (do not set it as default)
zigup fetch <version>
zigup fetch master

# print the default compiler version
zigup default

# set the default compiler
zigup default <version>

# list the installed compiler versions
zigup list

# clean compilers that are not the default, not master, and not marked to keep. when a version is specified, it will clean that version
zigup clean [<version>]

# mark a compiler to keep
zigup keep <version>

How the compilers are managed

zigup stores each compiler in a global "install directory" in a versioned subdirectory. On posix systems the "install directory" is $HOME/zig and on windows the install directory will be a directory named "zig" in the same directory as the "zigup.exe".

zigup makes the zig program available by creating an entry in a directory that occurs in the PATH environment variable. On posix systems this entry is a symlink to one of the zig executables in the install directory. On windows this is an executable that forwards invocations to one of the zig executables in the install directory.

Both the "install directory" and "path link" are configurable through command-line options --install-dir and --path-link respectively.

Building

Run zig build to build, zig build test to test and install with:

# install to a bin directory with
cp zig-out/bin/zigup BIN_PATH

TODO

  • set/remove compiler in current environment without overriding the system-wide vesrion.

Dependencies

zigup depends on https://github.com/marler8997/ziget which in turn depends on other projects depending on which SSL backend is selected. You can provide -Dfetch to zig build to automatically clone all repository dependencies, otherwise, the build will report a missing dependency error with an explanation of how to clone it.

The windows target depends on https://github.com/SuperAuguste/zarc to extract zip files. This repo might point to my fork if there are needed changes pending the acceptance of a PR: https://github.com/marler8997/zarc.

On linux and macos, zigup depends on tar to extract the compiler archive files (this may change in the future).