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 0b55777 commit efad56fCopy full SHA for efad56f
src/arduino.cc/builder/props/properties.go
@@ -49,6 +49,8 @@ func init() {
49
switch value := runtime.GOOS; value {
50
case "linux":
51
OSNAME = runtime.GOOS
52
+ case "freebsd":
53
+ OSNAME = runtime.GOOS
54
case "windows":
55
56
case "darwin":
src/arduino.cc/builder/utils/utils.go
@@ -64,6 +64,8 @@ func PrettyOSName() string {
64
switch osName := runtime.GOOS; osName {
65
66
return "macosx"
67
68
+ return "freebsd"
69
70
return "linux"
71
0 commit comments