Skip to content

Commit 671b156

Browse files
sjkellygiordano
andauthored
[yosys] update to 0.11 (#3869)
* [yosys] update to 0.11 - pin deps - add aarch64-apple-darwin * Update Y/Yosys/build_tarballs.jl Co-authored-by: Mosè Giordano <giordano@users.noreply.github.com> * Update Y/Yosys/build_tarballs.jl Co-authored-by: Mosè Giordano <giordano@users.noreply.github.com> * Update Y/Yosys/build_tarballs.jl Co-authored-by: Mosè Giordano <giordano@users.noreply.github.com>
1 parent ef2ee9b commit 671b156

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

Y/Yosys/build_tarballs.jl

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,19 @@
33
using BinaryBuilder, Pkg
44

55
name = "Yosys"
6-
version = v"0.9.0"
6+
version = v"0.11.0"
77

88
# Collection of sources required to complete build
99
sources = [
10-
GitSource("https://github.com/YosysHQ/yosys.git", "2e421feb0ea526468493ab008f3c72beb12c2bc6")
10+
GitSource("https://github.com/YosysHQ/yosys.git", "360fed8e4d611fa725a4526cf960383b8e6c6e64")
1111
]
1212

1313
dependencies = [
1414
Dependency("boost_jll"; compat="=1.76.0"), # max gcc7
15-
Dependency("Readline_jll"),
16-
Dependency("Tcl_jll"),
17-
Dependency("Zlib_jll"),
18-
Dependency("ABC_jll"),
19-
Dependency("Libffi_jll"; compat="~3.2.2"),
15+
Dependency("Readline_jll"; compat="8.1.1"),
16+
Dependency("Tcl_jll"; compat="8.6.11"),
17+
Dependency("Zlib_jll"; compat="1.2.11"),
18+
Dependency("Libffi_jll"; compat="~3.2.2")
2019
]
2120

2221
# Bash recipe for building across all platforms
@@ -46,7 +45,7 @@ fi
4645

4746
# These are the platforms we will build for by default, unless further
4847
# platforms are passed in on the command line
49-
platforms = filter!(p -> Sys.isapple(p) || Sys.islinux(p), supported_platforms())
48+
platforms = filter!(p -> arch(p) != "armv6l" && (Sys.isapple(p) || Sys.islinux(p)), supported_platforms(;experimental=true))
5049
platforms = expand_cxxstring_abis(platforms)
5150
# For some reasons, building for CXX03 string ABI doesn't actually work, skip it
5251
filter!(x -> cxxstring_abi(x) != "cxx03", platforms)

0 commit comments

Comments
 (0)