Skip to content
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

fyne-cross windows -arch=386 build creates two orphan files in ./ folder #192

Closed
vinser opened this issue May 4, 2023 · 1 comment
Closed

Comments

@vinser
Copy link

vinser commented May 4, 2023

Describe the bug:

fyne-cross windows -arch=386 build creates two orphan files in ./ folder

To Reproduce:

For the code beneath - steps to reproduce the behavior:

  1. Run the command fyne-cross windows -arch=386
  2. Run executable was built
  3. See 2 orphan files in ./ folder with names like core.9999 see core.tar.gz

Example code :

package main

import (
	"fyne.io/fyne/v2"
	"fyne.io/fyne/v2/app"
	"fyne.io/fyne/v2/widget"
)

var version string

func main() {
	a := app.New()
	w := a.NewWindow("Hello World")
	w.Resize(fyne.NewSize(200, 100))

	w.SetContent(widget.NewLabel("Version: " + version))
	w.ShowAndRun()
}

Device and debug info (please complete the following information):

Device info
  • OS: Linux
  • Version: Ubuntu 22.04.2 LTS
  • Go version: go1.20.3 linux/arm64
  • fyne-cross version: v1.4.0
  • Fyne version: not installed
@vinser
Copy link
Author

vinser commented May 4, 2023

I can not reproduce the issue after applying the -pull option
Sorry for the false alarm

@vinser vinser closed this as completed May 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant