mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-03-02 19:26:56 -05:00
magnum-opus code is wrong with Macos M1 #1081
Labels
No labels
bug
documentation
duplicate
enhancement
enhancement
enhancement
good first issue
help wanted
invalid
question
unreproducible
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/rustdesk-rustdesk#1081
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @zkteco-home on GitHub (Nov 28, 2022).
What did you expect to happen instead?
code should be like this:
let mut target = if target_os == "macos" {
if target_arch == "x64" {
"x64-osx".to_owned()
} else if target_arch == "arm64"{
"arm64-osx".to_owned()
} else {
format!("{}-{}", target_arch, target_os)
}
i suggest you fork and push it to your repository
@rustdesk commented on GitHub (Nov 28, 2022):
#763
@rustdesk commented on GitHub (Nov 28, 2022):
go PR
@zkteco-home commented on GitHub (Dec 1, 2022):
@rustdesk small issue feedback,due to remove tray_manager,so you should change here,otherwise compile fail.
