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 6a97abe commit 75e3d8dCopy full SHA for 75e3d8d
db/sqlite3/src/moz.build
@@ -98,6 +98,11 @@ elif CONFIG['HAVE_64BIT_BUILD']:
98
# This has obviously no effect in case of System Sqlite.
99
DEFINES['SQLITE_TEMP_FILE_PREFIX'] = '"mz_etilqs_"'
100
101
+# Our copy of sqlite3 doesn't know about AArch64 + Windows's endianness yet,
102
+# help it out. (This does non-Windows too, but that's OK.)
103
+if CONFIG['CPU_ARCH'] == 'aarch64':
104
+ DEFINES['SQLITE_BYTEORDER'] = 1234
105
+
106
# Suppress warnings in third-party code.
107
if CONFIG['CC_TYPE'] in ('clang', 'gcc'):
108
CFLAGS += [
0 commit comments