Cannot compile latest codelite package: undefined reference to `sqlite3_column_count'
Hello,
I want to update codelite to version 14.0.2.
https://github.com/eranif/codelite
https://build.opensuse.org/package/s...tools/codelite
I got stuck on
Code:
[ 144s] /home/abuild/rpmbuild/BUILD/codelite-14.0.2/sdk/databaselayer/src/dblayer/SqliteResultSetMetaData.cpp:78: undefined reference to `sqlite3_column_count'
I tried adding sqlite3 and its devel package as dependency, but does not work. I believe that cmake could not find sqlite3 files, could it be an issue with the build cmake build file?
Thanks
Re: Cannot compile latest codelite package: undefined reference to `sqlite3_column_count'
Quote:
Originally Posted by
andythe_great
Hello,
I want to update codelite to version 14.0.2.
https://github.com/eranif/codelite
https://build.opensuse.org/package/s...tools/codelite
I got stuck on
Code:
[ 144s] /home/abuild/rpmbuild/BUILD/codelite-14.0.2/sdk/databaselayer/src/dblayer/SqliteResultSetMetaData.cpp:78: undefined reference to `sqlite3_column_count'
I tried adding sqlite3 and its devel package as dependency, but does not work. I believe that cmake could not find sqlite3 files, could it be an issue with the build cmake build file?
Thanks
Hi
I see there is one reference to `-lsqlite` in the 1 second range on the build log, It should use mariadb... see line 60 https://github.com/eranif/codelite/b...CMakeLists.txt
Likely tied up with this change....
Re: Cannot compile latest codelite package: undefined reference to `sqlite3_column_count'
Quote:
Originally Posted by
malcolmlewis
Hi,
I add mariadb devel and lib dep, but still same error.