Open kelvins opened 7 years ago
What happens if you just create an example.go
without any references to gallium - does that build and run?
What happens if you log a message at the top of main()
- does it get printed?
Did you install git lfs and can you post the output of du -hs $GOPATH/dist/Gallium.framework/Versions/A/Gallium
?
example.go
without any references to gallium - does that build and run?Yes, it does. I have tried with the following code and it is building and running properly.
package main
import "log"
func main() {
log.Print("Hello")
}
Output: 2017/05/31 21:03:58 Hello
main()
- does it get printed?I have tried the following code:
func main() {
log.Print("Hello")
runtime.LockOSThread() // must be the first statement in main - see below
gallium.Loop(os.Args, onReady) // must be called from main function
}
And it doesn't print the log, only the same message: signal: killed
du -hs $GOPATH/dist/Gallium.framework/Versions/A/Gallium
? Yes, I did. I did run the command and got the following result:
du: /Users/username/Developer/GoWorkspace//dist/Gallium.framework/Versions/A/Gallium: No such file or directory
.
I have noticed that the Gallium exec is in the following directory:
/Users/username/Developer/GoWorkspace/src/github.com/alexflint/gallium/dist/Gallium.framework/Versions/A/Gallium
So, if I run the following command:
du -hs $GOPATH/src/github.com/alexflint/gallium/dist/Gallium.framework/Versions/A/Gallium
I get the following result:
1.2M /Users/username/Developer/GoWorkspace//src/github.com/alexflint/gallium/dist/Gallium.framework/Versions/A/Gallium
My $GOPATH
is /Users/username/Developer/GoWorkspace/
.
Any idea? Thanks
Hi, I'm just trying to run the Quickstart example but I'm facing some issues.
I have installed Gallium following the step-by-step from the Installation section in the README file.
Now, I'm trying to create a new Go project following these steps:
On the Go workspace:
I copied the following code to the
example.go
file:Then I ran the following commands:
And I got the following error message:
LSOpenURLsWithRole() failed with error -10810 for the file /Users/username/Developer/GoWorkspace/src/github.com/username/example/example.app.
Also when I try to run the
go run example.go
command I get itsignal: killed
.I don't know if it is a Gallium issue or if I'm doing something wrong, but I couldn't figure out what is happening. If someone can help me I will appreciate.
I'm running it on MacOS Sierra Version 10.12.5 using Go version 1.8.
By the way, congratulations for the great project.