Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,14 @@ jobs:
run: |
scripts/build.sh android arm64

- name: Build V8 x64
run: |
scripts/build.sh android x64
###############################################################
# FIXME
# ld.lld: error: cannot open ../third_party/llvm-build/Release+Asserts/lib/clang/15.0.0/lib/linux/libclang_rt.asan-x86_64-android.so: No such file or directory
# ld.lld: error: cannot open ../third_party/llvm-build/Release+Asserts/lib/clang/15.0.0/lib/linux/libclang_rt.asan_static-x86_64-android.a: No such file or directory
###############################################################
# - name: Build V8 x64
# run: |
# scripts/build.sh android x64

- name: Archive
run: |
Expand Down
2 changes: 1 addition & 1 deletion lib/v8-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {

sourceSets {
main {
jniLibs.srcDirs = ["${rootDir}/../build/lib"]
jniLibs.srcDirs += ["${rootDir}/../build/lib"]
}
}
}
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ GN_ARGS_BASE="
use_custom_libcxx=false
icu_use_data_file=false
treat_warnings_as_errors=false
is_asan=true
"

if [[ ${PLATFORM} = "macos_android" ]]; then
Expand Down