Skip to content
This repository was archived by the owner on Jan 10, 2020. It is now read-only.

Commit 5f398fb

Browse files
committed
Bump version to v5.0
1 parent 2fffdaa commit 5f398fb

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

build_tarballs.jl

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
using BinaryBuilder
44

55
const name = "CGAL"
6-
const version = v"4.14.2"
6+
const version = v"5.0"
77

88
# Collection of sources required to build CGAL
99
const 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
6465
products(prefix) = [

0 commit comments

Comments
 (0)