CodeCombiner / android-v8

Contains the Google's V8 build used in android runtime.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

android-v8

Contains the Google's V8 build used in android runtime.

How to build (linux)

  • get depot tools more :
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git

export PATH=`pwd`/depot_tools:"$PATH"
  • Make sure you have these packages installed (Linux only)
sudo apt-get install curl libc6-dev-i386 g++-multilib
  • Download and extract Android NDK 19b

Mac OS:

curl -O https://dl.google.com/android/repository/android-ndk-r19b-darwin-x86_64.zip
unzip android-ndk-r19b-darwin-x86_64.zip -d ndkr19b

You need to use XCode < 10 to be able to build v8

Linux:

curl -O https://dl.google.com/android/repository/android-ndk-r19b-linux-x86_64.zip
unzip android-ndk-r19b-linux-x86_64.zip -d ndkr19b
  • Export ANDROID_NDK_HOME environment variable
export ANDROID_NDK_HOME=`pwd`/ndkr19b/android-ndk-r19b
  • fetch v8 (this will create a v8 repo folder)

  • cd v8

  • Create symlinks

mkdir third_party/android_tools
ln -s $ANDROID_NDK_HOME third_party/android_tools/ndk
ln -s $ANDROID_NDK_HOME third_party/android_ndk
  • checkout tag 7.3.492.25
git checkout 7.3.492.25
  • Run sync
gclient sync
  • Apply patch running the following command
cd ..
./apply_patch.sh
  • run the following command in the root folder command
cd ..
./build.sh

you can run: ../build_v8 debug if you want to build v8 in debug, by default it's built in release.

Outputs

The output folder is called dist and it's created at v8 root level.

HOW TO CREATE A NEW PATCH file

git diff --cached > patch.diff

What to do next

About

Contains the Google's V8 build used in android runtime.


Languages

Language:Shell 100.0%