This repository was archived by the owner on Jan 10, 2020. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33using BinaryBuilder
44
55const name = " CGAL"
6- const version = v "4.14.2 "
6+ const version = v "5.0 "
77
88# Collection of sources required to build CGAL
99const sources = [
10- " https://github.com/CGAL/cgal.git" => " f8c1f6eb1bb2df3dc29916890cecc90b4246a9b1 " ,
10+ " https://github.com/CGAL/cgal.git" => " 6e9a233d552262d61d22677fa2ae9d5b69f413e8 " ,
1111]
1212
1313# Dependencies that must be installed before this package can be built
@@ -26,10 +26,9 @@ set -eu
2626# check c++ standard reported by the compiler
2727# CGAL uses CMake's try_run to check if it needs to link with Boost.Thread
2828# depending on the c++ standard supported by the compiler. From c++11 onwards,
29- # CGAL doesn't require Boost.Thread
30- __need_boost_thread=1
29+ # CGAL doesn't require Boost.Thread (by default since CGAL 5.0)
30+ __need_boost_thread=0
3131__cplusplus=$($CXX -x c++ -dM -E - </dev/null | grep __cplusplus | grep -o '[0-9]*')
32- [ $__cplusplus -ge 201103 ] && __need_boost_thread=0
3332
3433
3534## configure build
@@ -58,7 +57,9 @@ cmake --build . --config Release --target install
5857
5958# These are the platforms we will build for by default, unless further
6059# platforms are passed in on the command line
61- const platforms = expand_gcc_versions (supported_platforms ())
60+ const platforms = filter (expand_gcc_versions (supported_platforms ())) do p
61+ p. compiler_abi. gcc_version > :gcc6
62+ end
6263
6364# The products that we will ensure are always built
6465products (prefix) = [
You can’t perform that action at this time.
0 commit comments