We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 930d414 commit d8eca33Copy full SHA for d8eca33
tool/compile_sqlite.dart
@@ -65,8 +65,12 @@ Future<void> _compileApple(
65
66
Future<void> _compileAndroid(
67
String triple, String abiName, bool sqlite3Ciphers) async {
68
+ // https://github.com/actions/runner-images/blob/main/images/macos/macos-15-Readme.md#environment-variables-1
69
+ final ndk28 = Platform.environment['ANDROID_NDK_LATEST_HOME']!;
70
+ final clang = '$ndk28/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang';
71
+
72
await _clangCompile(
- '/Users/simon/Library/Android/sdk/ndk/28.1.13356709/toolchains/llvm/prebuilt/darwin-x86_64/bin/clang-19',
73
+ clang,
74
triple,
75
sqlite3Ciphers,
76
'android-$abiName-sqlite3${sqlite3Ciphers ? 'mc' : ''}.so',
0 commit comments