| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| 1 ARCH := x64 | 1 ARCH := x64 |
| 2 | 2 |
| 3 ANDROID_PARAMETERS = target_arch=arm OS=android | 3 ANDROID_PARAMETERS = target_arch=arm OS=android |
| 4 ANDROID_PARAMETERS += android_target_arch=arm | 4 ANDROID_PARAMETERS += android_target_arch=arm |
| 5 ANDROID_PARAMETERS += arm_neon=0 armv7=0 arm_fpu=off vfp3=off | 5 ANDROID_PARAMETERS += arm_neon=0 armv7=0 arm_fpu=off vfp3=off arm_float_abi=defa ult |
|
René Jeschke
2015/01/29 14:22:22
The v8 version we upgraded to needs this value to
Felix Dahlke
2015/01/29 16:49:25
Can you add another += line for that, for 80 colum
René Jeschke
2015/01/29 17:07:53
Done.
| |
| 6 | 6 |
| 7 TEST_EXECUTABLE = build/out/Debug/tests | 7 TEST_EXECUTABLE = build/out/Debug/tests |
| 8 | 8 |
| 9 .PHONY: all test clean v8_android android docs | 9 .PHONY: all test clean v8_android android docs |
| 10 | 10 |
| 11 all: | 11 all: |
| 12 third_party/gyp/gyp --depth=. -f make -I common.gypi --generator-output= build -Dtarget_arch=$(ARCH) libadblockplus.gyp | 12 third_party/gyp/gyp --depth=. -f make -I common.gypi --generator-output= build -Dtarget_arch=$(ARCH) libadblockplus.gyp |
| 13 $(MAKE) -C build | 13 $(MAKE) -C build |
| 14 | 14 |
| 15 test: all | 15 test: all |
| (...skipping 12 matching lines...) Expand all Loading... | |
| 28 v8_android: | 28 v8_android: |
| 29 mkdir -p third_party/v8/build/gyp | 29 mkdir -p third_party/v8/build/gyp |
| 30 cp -f third_party/v8_gyp_launcher third_party/v8/build/gyp/gyp | 30 cp -f third_party/v8_gyp_launcher third_party/v8/build/gyp/gyp |
| 31 DEFINES="${ANDROID_PARAMETERS}" \ | 31 DEFINES="${ANDROID_PARAMETERS}" \ |
| 32 OUTDIR=../../build \ | 32 OUTDIR=../../build \ |
| 33 $(MAKE) -C third_party/v8 android_arm.release | 33 $(MAKE) -C third_party/v8 android_arm.release |
| 34 | 34 |
| 35 android: v8_android | 35 android: v8_android |
| 36 GYP_DEFINES="${ANDROID_PARAMETERS}" \ | 36 GYP_DEFINES="${ANDROID_PARAMETERS}" \ |
| 37 third_party/gyp/gyp --depth=. -f make-android -I common.gypi --generator -output=build -Gandroid_ndk_version=r9 libadblockplus.gyp | 37 third_party/gyp/gyp --depth=. -f make-android -I common.gypi --generator -output=build -Gandroid_ndk_version=r9 libadblockplus.gyp |
| 38 » ndk-build -C build installed_modules \ | 38 » $(ANDROID_NDK_ROOT)/ndk-build -C build installed_modules \ |
|
René Jeschke
2015/01/29 14:22:22
As we already require $ANDROID_NDK_ROOT to be defi
Felix Dahlke
2015/01/29 16:49:25
Yeah, I've got multiple NDK versions here, we real
| |
| 39 BUILDTYPE=Release \ | 39 BUILDTYPE=Release \ |
| 40 APP_PLATFORM=android-9 \ | 40 APP_PLATFORM=android-9 \ |
| 41 APP_STL=gnustl_static \ | 41 APP_STL=gnustl_static \ |
| 42 APP_BUILD_SCRIPT=Makefile \ | 42 APP_BUILD_SCRIPT=Makefile \ |
| 43 NDK_PROJECT_PATH=. \ | 43 NDK_PROJECT_PATH=. \ |
| 44 NDK_OUT=. \ | 44 NDK_OUT=. \ |
| 45 NDK_APP_DST_DIR=android_arm.release | 45 NDK_APP_DST_DIR=android_arm.release |
| OLD | NEW |