when building ARM with constrained memory, the openssl build runs out of memory because too many processes are spawned.
this is due to the fact that in make_dep.sh the make -j$THREADS will be evaluated to make -j since the THREADS variable does not exist: there is a typo in the beginning.
when building ARM with constrained memory, the openssl build runs out of memory because too many processes are spawned. this is due to the fact that in make_dep.sh the
make -j$THREADS
will be evaluated tomake -j
since theTHREADS
variable does not exist: there is a typo in the beginning.