我试图构建 syncevoltion,但在之后遇到了以下错误./configure
checking for SQLITE3... configure: error: Package requirements (sqlite3) were not met:
No package 'sqlite3' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables SQLITE3_CFLAGS
and SQLITE3_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
configure: error: configuring Synthesis library failed
我不知道该怎么办。任何帮助都很好。
答案1
./configure
抛出此错误是因为 syncevoltion 需要sqlite3
,但您的系统上未安装
因此,在运行配置脚本之前,请先使用以下命令安装 SQLite 3 开发包
sudo apt-get install libsqlite3-dev
执行后./configure