elixirc - Man Page

The Elixir compiler

Synopsis

elixirc[Options] file ...

Description

The compiler is intended for compilation one or more files containing the Elixir source code. The files should have the extension .ex.

Options

-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.

Environment

ELIXIR_ERL_OPTIONS

Allows passing parameters to the Erlang runtime.

ERL_COMPILER_OPTIONS

Allows passing parameters to the Erlang compiler (see erlc(1)).

See Also

elixir(1), iex(1), mix(1)

Author

Internet Resources

Referenced By

elixir(1), iex(1), mix(1).

April 10, 2015