SQLite Forum

Help Compiling SQLite for UWP ARM64
Login
Hi,

Sorry I'm pretty new to source compilation. I'm trying to build SQLite for UWP ARM64 so I can use it on HoloLens 2.

I followed the How to compile section from my Windows 10 pc :

* Downloaded the Amalgamation sources
* Open MSVC command console.
* Executed `vcvars64.bat amd64_arm64 uwp 10.0.16299.0 for cross compilation of uwp dll (my laptop is x64 and i'm targeting UPW arm64)
* I ran `cl sqlite3.c -link -dll -out:sqlite3.dll`

This output a dll, but when loaded on HoloLens 2, I got this error : 

---
**ERROR**

EntryPointNotFoundException: Unable to find an entry point named 'sqlite3_libversion_number' in 'sqlite3'.

---

I don't know how to debug this problem, or if I did something wrong when compiling the source code.

I would really appreciate some support.

Thanks