1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/lang/erlang14/files/patch-erts_etc_common_erlc.c
Jimmy Olgeni b1a3b36665 Patch erlc.c to automatically pass the "-smp disable" arguments to
the Erlang runtime.

This should hopefully fix the pointyhat build hangs which seem
related to the Erlang SMP runtime (beam.smp).
2010-04-07 22:04:49 +00:00

14 lines
276 B
C

$FreeBSD$
--- erts/etc/common/erlc.c.orig
+++ erts/etc/common/erlc.c
@@ -186,6 +186,7 @@
*/
PUSH("-noinput");
+ PUSH2("-smp", "disable");
PUSH2("-mode", "minimal");
PUSH2("-boot", "start_clean");
PUSH3("-s", "erl_compile", "compile_cmdline");