int80hx
int80hx
the use case is like so: need to bulk insert sorted list
Can't find no `.gitmodules` in a root directory
Looks like `git clone --recursive` does not help. `/usr/local/include/` does not contain `contrtib/absl` ``` (base) [guyos@tc build]$ sudo make install [ 5%] Built target lz4-lib [ 8%] Built target absl-lib...
yes, it is successfully installed but can't be used.Try to run your example after fresh `sudo make install`
``` git clone --recursive https://github.com/ClickHouse/clickhouse-cpp.git cd clickhouse-cpp/ mkdir build cd build/ cmake -DCMAKE_BUILD_TYPE=Release .. make -j8 sudo make install ``` This is my test project: ``` git clone https://github.com/kkonevets/test_clickhouse_cpp.git cd...
The first option will not work, because you make a relative include `#include "absl/numeric/int128.h"`, something like `#include ` would work. The second option is not convenient, I don't want to...
Yes, I confirm that `#include "absl/numeric/int128.h"` will work if one sets `CMAKE_PREFIX_PATH` to `abseil` install path. But then in my opinion directory`contrib/absl` is redundant and confuses a user and it...
> @kkonevets can you help me solve your problem ? > > Didn't try to compile the fresh version of the code, as I wrote set CMAKE_PREFIX_PATH to abseil install...
yes, try `g++ -I /path/to/abseil -std=c++17 example.cpp`
Why you are not able to run the example if you could build it? @frkn4129 `g++ -std=c++17 example.cpp ` - this is a build procedure, not a run. To run...