Denis Glazachev
Denis Glazachev
Вот: [clickhouse-odbc-1.1.8-win32.msi.zip](https://github.com/ClickHouse/clickhouse-odbc/files/5282585/clickhouse-odbc-1.1.8-win32.msi.zip)
Can you post the entire output of cmake configure step? Does it generate the build scripts after outputting this? Such errors are not critical, the appropriate test (perl client) will...
`string_view` is C++17 feature. Does your compiler fully support C++17?
Try installing `g++-7` or `g++-8` package.
Try `sudo apt install g++-8` or `sudo apt install gcc-8` then set the following env vars before calling cmake configure step (in clean build dir): `CXX=g++-8 CC=gcc-8 cmake ...`
> -- Build files have been written to: /home/debian/clickhouse-odbc/build This means you can proceed and run compilation. The warnings are benign. > Errors while running CTest This is because you...
When you build from sources, the binary is somewhere in build folder. You can also run `cmake --build . --config RelWithDebInfo --target package` and find everything needed in the generated...
Try building it on CentOS 7 using suggestion from https://github.com/ClickHouse/clickhouse-odbc/issues/327#issuecomment-748610323 and then use the resulting binaries in CentOS 6.
Have you tried following the [instructions](https://github.com/ClickHouse/clickhouse-odbc#building-from-sources)? You will need a compiler that can target x86 (32-bit) with the corresponding runtime, and that satisfies the requirements from the link above.
Could you please provide exact steps to reproduce? That will help a lot.