1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: bump standard c++ to 2017.
Bumping to the C++ 2017 fixes build failures introduced by robin_map
1.4.0, which relies on the newer standard to operate properly.
Author: Étienne Mollier <emollier@debian.org>
Bug: https://github.com/citiususc/veryfasttree/issues/26
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1118378
Last-Update: 2025-10-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- veryfasttree.orig/CMakeLists.txt
+++ veryfasttree/CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.5...3.27)
project(VeryFastTree)
-set(CMAKE_CXX_STANDARD 11)
+set(CMAKE_CXX_STANDARD 17)
option(USE_SHARED "enable/disable linking of system shared libraries" OFF)
option(USE_NATIVE "enable/disable system's processor architecture optimization (linux)" ON)
|