*Created by: hanssv*
A simple standalone compiler (as escript). It can dump the resulting Erlang map to a file (using `term_to_binary()`. This is required by - https://www.pivotaltracker.com/story/show/163553535
rvirding
(Migrated from gitlab.com)
approved these changes 2019-01-30 00:03:19 +09:00
it will automaticaly copy the escript file to the top directory when you run rebar3 escriptize and give you better control./
If you add to rebar.config
```
{post_hooks, [{"(linux|darwin|solaris|freebsd|netbsd|openbsd)",
escriptize,
"cp \"$REBAR_BUILD_DIR/bin/aesophia\" ./aesophia"},
{"win32",
escriptize,
"robocopy \"%REBAR_BUILD_DIR%/bin/\" ./ aesophia* "
"/njs /njh /nfl /ndl & exit /b 0"} % silence things
]}.
{escript_incl_apps,
[aesophia,aebytecode]}.
{escript_main_app, aesophia}.
{escript_name, aesophia}.
{escript_emu_args, "%%! +sbtu +A0\n"}.
```
it will automaticaly copy the escript file to the top directory when you run `rebar3 escriptize` and give you better control./
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Created by: hanssv
A simple standalone compiler (as escript). It can dump the resulting Erlang map to a file (using
term_to_binary(). This is required by - https://www.pivotaltracker.com/story/show/163553535If you add to rebar.config
it will automaticaly copy the escript file to the top directory when you run
rebar3 escriptizeand give you better control./Created by: ThomasArts
Review: Approved
approved this merge request
Merged by: hanssv at 2019-01-31 08:51:57 UTC