Scroll to navigation

CRYSTAL(1)() (crystal compiler command line reference guide) CRYSTAL(1)()

NAME

crystalCompiler for the Crystal language.

SYNOPSIS

crystal command [switches] programfile -- [arguments]

DESCRIPTION

Crystal is a statically type-checked programming language. It was created with the beauty of Ruby and the performance of C in mind.

USAGE

You can compile and run a program by invoking the compiler with a single filename:

crystal some_program.cr

Crystal files usually end with the .cr extension, though this is not mandatory.

Alternatively you can use the run command:

crystal run some_program.cr

To create an executable use the build command:

crystal build some_program.cr

This will create an executable named "some_program".

Note that by default the generated executables are not fully optimized. To turn optimizations on, use the --release flag:

crystal build --release some_program.cr

Make sure to always use --release for production-ready executables and when performing benchmarks.

The optimizations are not turned on by default because the compile times are much faster without them and the performance of the program is still pretty good without them, so it allows to use the crystal command almost to be used as if it was an interpreter.

OPTIONS

The crystal command accepts the following options

TYPE [DIR | NAME DIR]

Generates a new Crystal project.

TYPE is one of:

Creates a library skeleton
Creates an application skeleton

This initializes the lib/app project folder as a git repository, with a license file, a README file, a shard.yml for use with shards (the Crystal dependency manager), a .gitignore file, and src and spec folders.

DIR  - directory where project will be generated

NAME - name of project to be generated (default: basename of DIR)

Options:

--force
Force overwrite existing files.
--skip-existing
Skip existing files.

[options] [programfile] [--] [arguments]

Compile program.

Options:

Generate an object file for cross compilation and prints the command to build the executable. The object file should be copied to the target system and the printed command should be executed there. This flag mainly exists for porting the compiler to new platforms, where possible run the compiler on the target platform directly.
--debug
Generate the output with symbolic debug symbols. These are read when debugging the built program with tools like lldb, gdb, valgrind etc. and provide mappings to the original source code for those tools.
Generate the output without any symbolic debug symbols.
FLAG, --define FLAG
Define a compile-time flag. This is useful to conditionally define types, methods, or commands based on flags available at compile time. The default flags are from the target triple given with --target-triple or the hosts default, if none is given.
[asm|llvm-bc|llvm-ir|obj]
Comma separated list of types of output for the compiler to emit. You can use this to see the generated LLVM IR, LLVM bitcode, assembly, and object files.
text|json, --format text|json
Format of output. Defaults to text. The json format can be used to get a more parser-friendly output.
Show full error trace.
Dump LLVM assembly file to output directory.
Pass additional flags to the linker. Though you can specify those flags on the source code, this is useful for passing environment specific information directly to the linker, like non-standard library paths or names. For more information on specifying linker flags on source, you can read the "C bindings" section of the documentation available on the official web site.
CPU
Specify a specific CPU to generate code for. This will pass a -mcpu flag to LLVM, and is only intended to be used for cross-compilation. For a list of available CPUs, invoke "llvm-as < /dev/null | llc -march=xyz -mcpu=help". Passing --mcpu native will pass the host CPU name to tune performance for the host.
CPU
Override or control specific attributes of the target, such as whether SIMD operations are enabled or not. The default set of attributes is set by the current CPU. This will pass a -mattr flag to LLVM, and is only intended to be used for cross-compilation. For a list of available attributes, invoke "llvm-as < /dev/null | llc -march=xyz -mattr=help".
-default|kernel|small|medium|large
Specifies a specific code model to generate code for. This will pass a --code-model flag to LLVM.
Disable colored output.
Don't do code generation, just parse the file.
Specify filename of output.
Specify prelude to use. The default one initializes the garbage collector. You can also use --prelude=empty to use no preludes. This can be useful for checking code generation for a specific source code file.
Turn on optimizations for the generated code, which are disabled by default.
Show full stack trace. Disabled by default, as the full trace usually makes error messages less readable and not always deliver relevant information.
--stats
Print statistics about the different compiler stages for the current build. Output time and used memory for each compiler process.
--progress
Print statistics about the progress for the current build.
--time
Print statistics about the execution time.
Generate a single LLVM module.
NUM
Maximum number of threads to use for code generation. The default is 8 threads.
TRIPLE
Enable target triple; intended to use for cross-compilation. See llvm documentation for more information about target triple.
Display the commands executed by the system.
Create a statically linked executable.
FILENAME
Source file name to be read from STDIN.

Generate documentation from comments using a subset of markdown. The output is saved in html format on the created docs/ folder. More information about documentation conventions can be found at https://crystal-lang.org/docs/conventions/documenting_code.html.

Options:

NAME
Set the project name. The default value is extracted from shard.yml if available.

In case no default can be found, this option is mandatory.

VERSION
Set the project version. The default value is extracted from current git commit or shard.yml if available.

In case no default can be found, this option is mandatory.

URL
Set the URL pointing to a config file (used for discovering versions).
REFNAME
Set source refname (e.g. git tag, commit hash). The default value is extracted from current git commit if available.

If this option is missing and can't be automatically determined, the generator can't produce source code links.

URL
Set URL pattern for source code links. The default value is extracted from git remotes ("origin" or first one) if available and the provider's URL pattern is recognized.

Supported replacement tags:

commit reference
path to source file inside the repository
basename of the source file
line number

If this option is missing and can't be automatically determined, the generator can't produce source code links.

DIR, --output DIR
Set the output directory (default: ./docs).
URL, --canonical-base-url URL
Indicate the preferred URL with rel="canonical" link element.
URL, --sitemap-base-url URL
Set the sitemap base URL. Sitemap will only be generated when this option is set.
PRIO
Set the priority assigned to sitemap entries (default: 1.0).
FREQ
Set the changefreq assigned to sitemap entries (default: never).

[variables]

Print Crystal-specific environment variables in a format compatible with shell scripts. If one or more variable names are given as arguments, it prints only the value of each named variable on its own line.

Variables:

 
Please see ENVIRONMENT VARIABLES.

 
Please see ENVIRONMENT VARIABLES.

 
Please see ENVIRONMENT VARIABLES.

 
Contains Crystal version.

[options][source]

Evaluate code from arguments or, if no arguments are passed, from the standard input. Useful for experiments.

Options:

--debug
Generate the output with symbolic debug symbols.These are read when debugging the built program with tools like lldb, gdb, valgrind etc. and provide mappings to the original source code for those tools.
Generate the output without any symbolic debug symbols.
FLAG,--defineFLAG
Define a compile-time flag. This is useful to conditionally define types, methods, or commands based on flags available at compile time. The default flags are from the target triple given with --target-triple or the hosts default, if none is given.
Show full error trace.
Turn on optimizations for the generated code, which are disabled by default.
--stats
Print statistics about the different compiler stages for the current build. Output time and used memory for each compiler process.
--progress
Print statistics about the progress for the current build.
--time
Print statistics about the execution time.
Disable colored output.

[options][file]

Starts the crystal playground server on port 8080, by default.

Options:

PORT,--portPORT
Run the playground on the specified port. Default is 8080.
HOST,--bindingHOST
Bind the playground to the specified IP.
--verbose
Display detailed information of the executed code.

[options][programfile][--][arguments]

The default command. Compile and run program.

Options:Same as the build options.

[options][files]

Compile and run specs (in spec directory).

Options:

--debug
Generate the output with symbolic debug symbols.These are read when debugging the built program with tools like lldb, gdb, valgrind etc. and provide mappings to the original source code for those tools.
Generate the output without any symbolic debug symbols.
FLAG,--defineFLAG
Define a compile-time flag. This is useful to conditionally define types, methods, or commands based on flags available at compile time. The default flags are from the target triple given with --target-triple or the hosts default, if none is given.
Show full error trace.
Turn on optimizations for the generated code, which are disabled by default.
--stats
Print statistics about the different compiler stages for the current build. Output time and used memory for each compiler process.
--progress
Print statistics about the progress for the current build.
--time
Print statistics about the execution time.
Disable colored output.

[tool][switches][programfile][--][arguments]

Run a tool. The available tools are: context, format, hierarchy, implementations, and types.

Tools:

Show context for given location.
Show macro expansion for given location.
Format project, directories and/or files with the coding style used in the standard library. You can use the--checkflag to check whether the formatter would make any changes.
Show hierarchy of types from file. Also show class and struct members, with type and size. Types can be filtered with a regex by using the-eflag.
Show implementations for a given call. Use--cursorto specify the cursor position. The format for the cursor position is file:line:column.
Show type of main variables of file.

Clear the compiler cache (located at 'CRYSTAL_CACHE_DIR').

Show help. Option --help or -h can also be added to each command for command-specific help.

Show version.

ENVIRONMENT VARIABLES

 
Defines path where Crystal caches partial compilation results for faster subsequent builds. This path is also used to temporarily store executables when Crystal programs are run with 'crystal run' rather than 'crystal build'.

 
Defines paths where Crystal searches for (binary) libraries. Multiple paths can be separated by ":".These paths are passed to the linker as `-L` flags.

The pattern '$ORIGIN' at the start of the path expands to the directory where the compiler binary is located. For example, '$ORIGIN/../lib/crystal' resolves the standard library path relative to the compiler location in a generic way, independent of the absolute paths (assuming the relative location is correct).

 
Defines paths where Crystal searches for required source files. Multiple paths can be separated by ":".

The pattern '$ORIGIN' at the start of the path expands to the directory where the compiler binary is located. For example, '$ORIGIN/../share/crystal/src' resolves the standard library path relative to the compiler location in a generic way, independent of the absolute paths (assuming the relative location is correct).

 
Defines options for the Crystal compiler to be used besides the command line arguments. The syntax is identical to the command line arguments. This is handy when using Crystal in build setups, for example 'CRYSTAL_OPTS=--debug make build'.

SEE ALSO

shards(1)

https://crystal-lang.org/
The official web site.
https://github.com/crystal-lang/crystal
Official Repository.
UNIX