Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-2561: [C++] Fix double free in cuda-test under code coverage
As far as I can understand, the problem is due to both shared and static linking with libarrow. Some static std::string in libarrow.so would be destroyed twice at shutdown. Linking entirely statically seems to fix the issue. Author: Antoine Pitrou <[email protected]> Closes apache#2048 from pitrou/ARROW-2561 and squashes the following commits: 7a9d1b5 <Antoine Pitrou> Add comment and do not mention arrow_shared in static link libs 0b40b80 <Antoine Pitrou> ARROW-2561: Fix double free in cuda-test under code coverage
- Loading branch information