SQLite Forum

Compile for Apple Silicon
Login
Others have already pointed out where you went wrong, but I think you should probably use the [autoconf tarball](https://sqlite.org/2021/sqlite-autoconf-3370000.tar.gz) instead, then:
```
CC=clang CFLAGS="-arch x86_64 -arch arm64" ./configure
make
```
gets you the universal CLI binary and libs in a single step.