-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: add *bsd targets #985
Conversation
Can Lapce build on *BSD? |
According to this https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=265892#c16, yes |
Maybe using #[cfg(any(target_os = "linux", target_os = "openbsd"))] |
That doesn't include |
That's how it is on Druid. So I'm really surprised. I'm thinking the other way around. You add the thing that you know that's gonna work. |
e4177e1
to
a854029
Compare
Last time I checked, Rust considers MacOS as Unix-like, which might make that config less useful for something like Lapce. |
That's why there was |
Yep, just adding what I thought was a useful fact. Sorry for the noise. |
target_family = "unix"
includes all Unix-like systems, like *BSD, etc.