Paul Wise

Results 249 comments of Paul Wise

Also the GPU binaries need to be adjusted in `GPUSupport/CMakeLists.txt`.

On older versions of Boost (1.67 is affected, 1.74 is not), the `boost::system::system_category()` function is undefined at link time unless the `system` component is included.

I suggest detecting when the file open failed due to missing `O_DIRECT` support and opening the file again without using `O_DIRECT`.

To be clear on the swig changes, in `Wrappers/CMakeLists.txt`, every reference to `${PROJECT_SOURCE_DIR}/Wrappers/inc/*wrap*` or `${PROJECT_SOURCE_DIR}/Wrappers/inc/*.{py,java,cs}` files need to be replaced with references to `${CMAKE_BINARY_DIR}/*wrap*` and `${CMAKE_BINARY_DIR}/*.{py,java,cs}`. I have tested that...

In addition, the `ADDITIONAL_CLEAN_FILES` property needs to be set using `set_property` to the corresponding `*wrap*` and `.{py,java,cs}` for each of the targets in `Wrappers/CMakeLists.txt`, so that `make clean` within the...

This will be helpful to diagnose the [SPTAG build failures in Debian](https://buildd.debian.org/status/logs.php?pkg=sptag&arch=amd64).

Seems like this issue can be closed?

This is missing a typo fix: `indexbuiler` should be `indexbuilder`.

Looks like this is required in the main cmake file order to run the tests: ``` include(CTest) ```

Looks like merging #294 would also fix this issue, since the try-dispatcher branch is for that PR. @PhilipBAdams could you submit a separate PR for the test fix please?