You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 16, 2023. It is now read-only.
julia>triplet(BinaryProvider.Linux(:armv7l))
"arm-linux-gnueabihf"
julia>platform_key("arm-linux-gnueabihf")
WARNING: Platform `arm-linux-gnueabihf` is not an officially supported platform
BinaryProvider.UnknownPlatform()
julia>platform_key("armv7l-linux-gnueabihf")
BinaryProvider.Linux(:armv7l, :glibc, :eabihf)
This can be reversed by chaning the dict in platform_key to :armv7l => "arm", but I'm not sure if this is the way to go, or that we need do deal with sub-arch explicitly.
The text was updated successfully, but these errors were encountered:
visr
added a commit
to JuliaGeo/GDALBuilder
that referenced
this issue
Mar 31, 2018
Came across this in GEOSBuilder, building with
TARGET=arm-linux-gnueabihf
.https://travis-ci.org/JuliaGeo/GEOSBuilder/jobs/360575777#L507-L516
This can be reversed by chaning the dict in platform_key to
:armv7l => "arm"
, but I'm not sure if this is the way to go, or that we need do deal with sub-arch explicitly.The text was updated successfully, but these errors were encountered: