mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 07:37:56 +01:00
20 lines
498 B
Plaintext
20 lines
498 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
export TOOLCHAIN=$PWD/android-toolchain
|
||
|
mkdir -p $TOOLCHAIN
|
||
|
$1/build/tools/make-standalone-toolchain.sh \
|
||
|
--toolchain=arm-linux-androideabi-4.7 \
|
||
|
--arch=arm \
|
||
|
--install-dir=$TOOLCHAIN \
|
||
|
--platform=android-9
|
||
|
export PATH=$TOOLCHAIN/bin:$PATH
|
||
|
export AR=arm-linux-androideabi-ar
|
||
|
export CC=arm-linux-androideabi-gcc
|
||
|
export CXX=arm-linux-androideabi-g++
|
||
|
export LINK=arm-linux-androideabi-g++
|
||
|
|
||
|
./configure \
|
||
|
--without-snapshot \
|
||
|
--dest-cpu=arm \
|
||
|
--dest-os=android
|