diff options
author | Loïc Hoguin <[email protected]> | 2024-11-26 10:44:39 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2024-11-26 14:05:48 +0100 |
commit | 0ed55b086d89b136c3cf1d8dbf1da138ac392a94 (patch) | |
tree | d86aa7b0720dbbab223ba96ddebbab8737263ce4 /test | |
parent | 6a2ebba2248ee84931e891218bdb95133f27c932 (diff) | |
download | erlang.mk-0ed55b086d89b136c3cf1d8dbf1da138ac392a94.tar.gz erlang.mk-0ed55b086d89b136c3cf1d8dbf1da138ac392a94.tar.bz2 erlang.mk-0ed55b086d89b136c3cf1d8dbf1da138ac392a94.zip |
Make $(ERL) faster
While using "-mode minimal" removes too much that we need
(such as inet_db), we can safely disable the distribution
by default and limit the number of processes and sockets
to a maximum of 1024.
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 78603aa..9bd9168 100644 --- a/test/Makefile +++ b/test/Makefile @@ -18,7 +18,7 @@ export CACHE_DIR # Erlang, quickly! -ERL = erl +A0 -noinput -boot no_dot_erlang +ERL = erl -noinput -boot no_dot_erlang -kernel start_distribution false +P 1024 +Q 1024 # Platform detection, condensed version. |