mirror of
https://github.com/rivo/tview.git
synced 2026-04-27 05:45:49 +03:00
[GH-ISSUE #593] why go build for win display different? #433
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/tview#433
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 @r9w-design on GitHub (Apr 27, 2021).
Original GitHub issue: https://github.com/rivo/tview/issues/593
i use ubuntu in docker on win10 system, run ' env CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build main.go', get 'main.exe', docker cp this file to win10 and execute, then display different. is this golang build problem? how can i fix this?
@rivo commented on GitHub (Apr 27, 2021):
Your build command looks ok to me. As far as I know, the output should be identical to builds on Windows directly. (You could try, though, just to be sure.)
People often report similar issues for
tviewbut these are almost never actualtviewissues. Check out the FAQ for a list of previous discussions with similar problems and let me know if there's anything that helped you solve this problem.@r9w-design commented on GitHub (Apr 29, 2021):
thank you