compile
compile
Module
compile
Module summary
Erlang Compiler
Description
This module provides an interface to the standard Erlang compiler. It can generate either a new file, which contains the object code, or return a binary, which can be loaded directly.
Exports
env_compiler_options()
Return compiler options given via the environment variable ERL_COMPILER_OPTIONS
. If the value is a list, it is returned as is. If it is not a list, it is put into a list.
file(File)
Is the same as file(File, [verbose,report_errors,report_warnings])
.
file(File, Options) -> CompRet
Types:
CompRet = ModRet | BinRet | ErrRet ModRet = {ok,ModuleName} | {ok,ModuleName,Warnings} BinRet = {ok,Modu