Skip to content

Commit aa9cd98

Browse files
committed
Don't use experimental platforms
1 parent edd7907 commit aa9cd98

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/Rootfs.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,7 @@ function supported_platforms(;exclude::Union{Vector{<:Platform},Function}=Return
729729
Platform("armv6l", "linux"),
730730
Platform("armv7l", "linux"),
731731
Platform("powerpc64le", "linux"),
732+
Platform("riscv64", "linux"),
732733

733734
# musl Linuces
734735
Platform("i686", "linux"; libc="musl"),
@@ -751,8 +752,6 @@ function supported_platforms(;exclude::Union{Vector{<:Platform},Function}=Return
751752
# We have experimental support for some platforms, allow easily including them
752753
if experimental
753754
append!(standard_platforms, [
754-
Platform("riscv64", "linux"),
755-
Platform("riscv64", "linux"; libc="musl"),
756755
])
757756
end
758757
return exclude_platforms!(standard_platforms,exclude)

test/rootfs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ using BinaryBuilderBase
8686
Platform("i686", "linux"; libc="glibc", march="pentium4"),
8787
Platform("i686", "linux"; libc="glibc", march="prescott"),
8888
Platform("powerpc64le", "linux"; libc="glibc", march="power8"),
89-
#experimental Platform("riscv64", "linux"; libc="glibc", march="riscv64"),
89+
Platform("riscv64", "linux"; libc="glibc", march="riscv64"),
9090
Platform("x86_64", "linux"; libc="glibc", march="avx"),
9191
Platform("x86_64", "linux"; libc="glibc", march="avx2"),
9292
Platform("x86_64", "linux"; libc="glibc", march="avx512"),

0 commit comments

Comments
 (0)