erlang: disable parallel building
This fixes build errors like GEN asn1ct_eval_ext.erl {"init terminating in do_boot",{undef,[{asn1ct_func,start_link,[],[]},{prepare_templates,gen_asn1ct_eval,1,[{file,"prepare_templates.erl"},{line,58}]},{init,start_em,1,[]},{init,do_boot,3,[]}]}} init terminating in do_boot ({undef,[{asn1ct_func,start_link,[],[]},{prepare_templates,gen_asn1ct_eval,1,[{_},{_}]},{init,start_em,1,[]},{init,do_boot,3,[]}]}) that occur on some machines but not others.
This commit is contained in:
parent
3a5b4a631d
commit
82e55907ae
@ -59,7 +59,8 @@ in stdenv.mkDerivation ({
|
||||
|
||||
debugInfo = enableDebugInfo;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
# On some machines, parallel build reliably crashes on `GEN asn1ct_eval_ext.erl` step
|
||||
enableParallelBuilding = false;
|
||||
|
||||
# Clang 4 (rightfully) thinks signed comparisons of pointers with NULL are nonsense
|
||||
prePatch = ''
|
||||
|
Loading…
Reference in New Issue
Block a user