PK
Size: a a a
PK
V
V
DZ
PK
DZ
PK
DZ
V
PK
PK
DZ
PK
PK
DZ
ML
apt install -y build-essential crossbuild-essential-armhf
./otp_build autoconf --host=arm-linux-gnueabihf --build=x86_64-linux-gnu
./configure --enable-bootstrap-only --disable-pgo --without-threadnames
# тут фигня написана
# http://erlang.org/pipermail/erlang-questions/2014-April/078459.html
# тут дело: http://erlang.org/doc/installation_guide/INSTALL-CROSS.html
make -j 5 bootstrap
# а потом уже основной код:
./configure --host=arm-linux-gnueabihf --build=x86_64-linux-gnu --enable-smp-support \
--enable-dynamic-ssl-lib --enable-builtin-zlib \
--without-megaco --without-wx --without-et --without-diameter --without-eldap \
--without-debugger --without-mnesia \
--without-odbc --without-jinterface \
--disable-pgo \
--enable-kernel-poll --without-java --enable-dirty-schedulers $SSL_ERL_FLAGS \
--enable-lock-counter $EXTRAOPTS
PK
DZ
PK
EK