We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481fd94 commit ba42280Copy full SHA for ba42280
arduino-core/src/cc/arduino/contributions/packages/HostDependentDownloadableContribution.java
@@ -80,12 +80,10 @@ public boolean isCompatible(Platform platform) {
80
}
81
82
if (osName.contains("FreeBSD")) {
83
- if (osArch.contains("amd64")) {
84
- return host.matches("x86_64-freebsd[0-9]*");
85
- } else if (osArch.contains("arm")) {
+ if (osArch.contains("arm")) {
86
return host.matches("arm.*-freebsd[0-9]*");
87
} else {
88
- return host.matches("i386-freebsd[0-9]*");
+ return host.matches(osArch + "-freebsd[0-9]*");
89
90
91
0 commit comments