Skip to content

Commit d38e297

Browse files
committed
skip sqlite3mc on x86
1 parent cd25d41 commit d38e297

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tool/compile_sqlite.dart

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ void main() async {
2121

2222
Future<void> _compileLinux(
2323
String compiler, String abi, bool sqlite3Ciphers) async {
24+
if (abi == 'x86' && sqlite3Ciphers) {
25+
// i686 does not support sqlite ciphers.
26+
return;
27+
}
28+
2429
final args = [
2530
'-fPIC',
2631
'-shared',

0 commit comments

Comments
 (0)