Skip to content

Commit

Permalink
[RDKit] RDKit 2021.09.2 and mac M1 support (#3786)
Browse files Browse the repository at this point in the history
* RDKit 2021.09.2 and mac M1 support

* [RDKit] fix boost compat

* [RDKit] use gcc6
  • Loading branch information
eloyfelix authored Oct 22, 2021
1 parent 1725ab5 commit d2ff0fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions R/RDKit/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ using BinaryBuilder, Pkg
julia_version = v"1.6.0"

name = "RDKit"
version = v"2021.09.1pre"
version = v"2021.09.2"

sources = [
GitSource("https://github.com/rdkit/rdkit.git", "f5a54af475cc38a82b2c69a8a44193a222fe92fc"),
GitSource("https://github.com/rdkit/rdkit.git", "333fa5ce222627583052ddffb2c27265994a3950"),
]

script = raw"""
Expand Down Expand Up @@ -35,7 +35,7 @@ platforms = [
Platform("i686", "linux"),
Platform("aarch64", "linux"),
Platform("x86_64", "macos"),
# Platform("aarch64", "macos"),
Platform("aarch64", "macos"),
]

platforms = expand_cxxstring_abis(platforms)
Expand All @@ -46,10 +46,10 @@ products = [

dependencies = [
Dependency("FreeType2_jll"),
Dependency("boost_jll"; compat="=1.71.0"),
Dependency("boost_jll"; compat="=1.76.0"),
BuildDependency("Eigen_jll"),
Dependency("Zlib_jll"),
]

build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies;
preferred_gcc_version=v"5", julia_compat="^$(julia_version.major).$(julia_version.minor)")
preferred_gcc_version=v"6", julia_compat="^$(julia_version.major).$(julia_version.minor)")

0 comments on commit d2ff0fe

Please sign in to comment.