Created
May 15, 2015 20:28
-
-
Save KronicDeth/1e50fed2258fb84532a9 to your computer and use it in GitHub Desktop.
make clean; make test in elixir-lang/elixir
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> make clean | |
cd lib/elixir && ../../rebar clean | |
==> elixir (clean) | |
rm -rf ebin | |
rm -rf lib/*/ebin | |
rm -rf lib/elixir/test/ebin | |
rm -rf lib/*/tmp | |
rm -rf lib/mix/test/fixtures/git_repo | |
rm -rf lib/mix/test/fixtures/deps_on_git_repo | |
rm -rf lib/mix/test/fixtures/git_rebar | |
rm -rf lib/elixir/src/elixir.app.src | |
> make test | |
==> elixir (compile) | |
Compiled src/elixir_parser.yrl | |
Compiled src/elixir_aliases.erl | |
Compiled src/elixir.erl | |
Compiled src/elixir_bitstring.erl | |
Compiled src/elixir_bootstrap.erl | |
Compiled src/elixir_compiler.erl | |
Compiled src/elixir_counter.erl | |
Compiled src/elixir_code_server.erl | |
Compiled src/elixir_clauses.erl | |
Compiled src/elixir_def_defaults.erl | |
Compiled src/elixir_def_overridable.erl | |
Compiled src/elixir_env.erl | |
Compiled src/elixir_def.erl | |
Compiled src/elixir_errors.erl | |
Compiled src/elixir_dispatch.erl | |
Compiled src/elixir_exp_clauses.erl | |
Compiled src/elixir_fn.erl | |
Compiled src/elixir_import.erl | |
Compiled src/elixir_exp.erl | |
Compiled src/elixir_lexical.erl | |
Compiled src/elixir_for.erl | |
Compiled src/elixir_locals.erl | |
Compiled src/elixir_map.erl | |
Compiled src/elixir_interpolation.erl | |
Compiled src/elixir_module.erl | |
Compiled src/elixir_scope.erl | |
Compiled src/elixir_sup.erl | |
Compiled src/elixir_quote.erl | |
Compiled src/elixir_translator.erl | |
Compiled src/elixir_try.erl | |
Compiled src/elixir_utils.erl | |
Compiled src/elixir_tokenizer.erl | |
Compiled src/elixir_parser.erl | |
==> bootstrap (compile) | |
Compiled lib/elixir/lib/kernel.ex | |
Compiled lib/elixir/lib/macro/env.ex | |
Compiled lib/elixir/lib/keyword.ex | |
Compiled lib/elixir/lib/module.ex | |
Compiled lib/elixir/lib/list.ex | |
Compiled lib/elixir/lib/macro.ex | |
Compiled lib/elixir/lib/code.ex | |
Compiled lib/elixir/lib/module/locals_tracker.ex | |
Compiled lib/elixir/lib/kernel/typespec.ex | |
Compiled lib/elixir/lib/exception.ex | |
Compiled lib/elixir/lib/protocol.ex | |
Compiled lib/elixir/lib/stream/reducers.ex | |
Compiled lib/elixir/lib/enum.ex | |
Compiled lib/elixir/lib/inspect/algebra.ex | |
Compiled lib/elixir/lib/inspect.ex | |
Compiled lib/elixir/lib/range.ex | |
Compiled lib/elixir/lib/regex.ex | |
Compiled lib/elixir/lib/string.ex | |
Compiled lib/elixir/lib/string/chars.ex | |
Compiled lib/elixir/lib/io.ex | |
Compiled lib/elixir/lib/path.ex | |
Compiled lib/elixir/lib/file.ex | |
Compiled lib/elixir/lib/system.ex | |
Compiled lib/elixir/lib/kernel/cli.ex | |
Compiled lib/elixir/lib/kernel/error_handler.ex | |
Compiled lib/elixir/lib/kernel/parallel_compiler.ex | |
Compiled lib/elixir/lib/kernel/lexical_tracker.ex | |
==> elixir (compile) | |
** (UndefinedFunctionError) undefined function: Path.Wildcard.read_link_info/1 | |
Path.Wildcard.read_link_info('./lib/kernel.ex') | |
(stdlib) filelib.erl:268: :filelib.do_wildcard_1/2 | |
(stdlib) filelib.erl:258: :filelib.do_wildcard/3 | |
(stdlib) filelib.erl:60: :filelib.wildcard/2 | |
/Users/luke.imhoff/git/KronicDeth/elixir/lib/elixir/lib/path.ex:557: Path.wildcard/2 | |
/Users/luke.imhoff/git/KronicDeth/elixir/lib/elixir/lib/kernel/cli.ex:372: Kernel.CLI.filter_patterns/1 | |
/Users/luke.imhoff/git/KronicDeth/elixir/lib/elixir/lib/kernel/cli.ex:377: anonymous fn/1 in Kernel.CLI.filter_multiple_patterns/1 | |
/Users/luke.imhoff/git/KronicDeth/elixir/lib/elixir/lib/enum.ex:967: Enum."-map/2-lc$^0/1-0-"/2 | |
make: *** [lib/elixir/ebin/Elixir.Kernel.beam] Error 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment