1ELIXIRC(1) BSD General Commands Manual ELIXIRC(1)
2
4 elixirc — The Elixir compiler
5
7 elixirc [OPTIONS] file ...
8
10 The compiler is intended for compilation one or more files containing the
11 Elixir source code. The files should have the extension .ex.
12
14 -o directory
15 Places the output file in the specified directory. If the direc‐
16 tory is not specified via the option, the current working direc‐
17 tory will be used for the purpose.
18
19 --erl parameters
20 Serves the same purpose as ELIXIR_ERL_OPTIONS (see the
21 ENVIRONMENT section).
22
23 --ignore-module-conflict
24 Disables warnings when a module was previously defined.
25
26 --no-debug-info
27 Disables producing debugging information.
28
29 --no-docs
30 Disables generating documentation.
31
32 --warnings-as-errors
33 Makes all warnings into errors.
34
35 --verbose
36 Activates verbose mode.
37
38 -- Separates the options passed to the compiler from the options
39 passed to the executed code.
40
42 ELIXIR_ERL_OPTIONS
43 Allows passing parameters to the Erlang runtime.
44
45 ERL_COMPILER_OPTIONS
46 Allows passing parameters to the Erlang compiler (see erlc(1)).
47
49 elixir(1), iex(1), mix(1)
50
52 Elixir is maintained by the Elixir Core Team.
53
54 This manual page was contributed by Evgeny Golyshev.
55
56 Copyright (c) 2012 Plataformatec.
57
59 Main website: https://elixir-lang.org
60
61 Documentation: https://elixir-lang.org/docs.html
62
63BSD April 10, 2015 BSD