You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ ldcup install # default latest version# or
$ ldcup install opend-latest # opend-ldc2 compiler latest-CI version# or
$ ldcup install ldc2-beta # latest beta version# or
$ ldcup install ldc2-[master or nightly] # latest-CI version# or
$ ldcup install ldc2-${version}# or
$ ldcup install redub # redub build-system (dub fork) - need ldc2 installed
$ ldcup list # list installed compilers in default path directory
$ ldcup list --remote # list all available compiler releases
$ ldcup uninstall ldc2-${version}
$ ldcup run -- --version # run ldc2 with --version flag## Custom path directory
$ ldcup list --install-dir=custom-path # list installed compilers in custom path directory# or set LDC2_ROOTPATH environment variable
$ LDC2_ROOTPATH=customPath ldcup list # list installed compilers in custom path directory
Helper
$ ldcup Usage: ldcup [command] [options]Commands: install [compiler] Install a ldc2 compiler (default: ldc2-latest) uninstall [compiler] Uninstall a specific compiler list List installed compilers run -- <ldc2-flags> Run a ldc2 compiler with specified flags --install-dir=DIR Specify the installation directory --platform=PLATFORM Specify the platform (e.g., linux-x86_64) --verbose, -v Enable verbose output --remote List all available compiler releases --help, -h Show this help message