elixirc
— The
Elixir compiler
elixirc |
[OPTIONS] file ... |
The compiler is intended for compilation one or more files
containing the Elixir source code. The files should have the extension
.ex.
-o
directory
- Places the output file in the specified directory. If the directory is not
specified via the option, the current working directory will be used for
the purpose.
--erl
parameters
- Serves the same purpose as ELIXIR_ERL_OPTIONS (see the
ENVIRONMENT section).
--ignore-module-conflict
- Disables warnings when a module was previously defined.
--no-debug-info
- Disables producing debugging information.
--no-docs
- Disables generating documentation.
--warnings-as-errors
- Makes all warnings into errors.
--verbose
- Activates verbose mode.
--
- Separates the options passed to the compiler from the options passed to
the executed code.
- Elixir is maintained by the Elixir Core Team.
-
- This manual page was contributed by Evgeny Golyshev.
-
- Copyright (c) 2012 Plataformatec.
-
- Main website: https://elixir-lang.org
-
- Documentation: https://elixir-lang.org/docs.html
-