Don't use STXXL library by default

This commit is contained in:
Michael Krasnyk 2017-07-22 19:16:32 -04:00 committed by Daniel J. Hofmann
parent bae1b9c5e2
commit 02922ecf5e
2 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,10 @@
- #4322: Deprecated `UseLane`. Use the intersections array if you require lanes between steps - #4322: Deprecated `UseLane`. Use the intersections array if you require lanes between steps
- #4321: Fixes a potential crash in the MLD alternative code path when not even a shortest path can be found - #4321: Fixes a potential crash in the MLD alternative code path when not even a shortest path can be found
# 5.9.1
- Infrastructure
- STXXL is not required by default
# 5.9.0 # 5.9.0
- Changes from 5.8: - Changes from 5.8:
- Algorithm: - Algorithm:

View File

@ -21,7 +21,7 @@ option(BUILD_PACKAGE "Build OSRM package" OFF)
option(ENABLE_ASSERTIONS "Use assertions in release mode" OFF) option(ENABLE_ASSERTIONS "Use assertions in release mode" OFF)
option(ENABLE_COVERAGE "Build with coverage instrumentalisation" OFF) option(ENABLE_COVERAGE "Build with coverage instrumentalisation" OFF)
option(ENABLE_SANITIZER "Use memory sanitizer for Debug build" OFF) option(ENABLE_SANITIZER "Use memory sanitizer for Debug build" OFF)
option(ENABLE_STXXL "Use STXXL library" ON) option(ENABLE_STXXL "Use STXXL library" OFF)
option(ENABLE_LTO "Use LTO if available" OFF) option(ENABLE_LTO "Use LTO if available" OFF)
option(ENABLE_FUZZING "Fuzz testing using LLVM's libFuzzer" OFF) option(ENABLE_FUZZING "Fuzz testing using LLVM's libFuzzer" OFF)
option(ENABLE_GOLD_LINKER "Use GNU gold linker if available" ON) option(ENABLE_GOLD_LINKER "Use GNU gold linker if available" ON)