Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/cares/android-configure')
-rwxr-xr-xdeps/cares/android-configure21
1 files changed, 0 insertions, 21 deletions
diff --git a/deps/cares/android-configure b/deps/cares/android-configure
deleted file mode 100755
index 5299e5c718a..00000000000
--- a/deps/cares/android-configure
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/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++
-export PLATFORM=android
-export OS=android
-
-if [ $2 -a $2 == 'gyp' ]
- then
- ./gyp_cares -DOS=android -Dtarget_arch=arm
-fi