CompileDaemon icon indicating copy to clipboard operation
CompileDaemon copied to clipboard

Very simple compile daemon for Go

Results 35 CompileDaemon issues
Sort by recently updated
recently updated
newest added

I have Go v1.19 on Windows 10. This is what my Dockerfile looks like: ![image](https://user-images.githubusercontent.com/40477419/183565230-ed81b8ad-6200-452e-994d-46dd02888dbd.png) When I run `docker-compose up --build`, I get this: ![image](https://user-images.githubusercontent.com/40477419/183565327-cb70539d-7b72-4c3f-b049-3c388a4fc96f.png) ![image](https://user-images.githubusercontent.com/40477419/183565381-984b5058-778a-4be5-8d88-f11e4a3789da.png) ...yet it's stuck here....

Sometimes a running program fails because of the panic. Because CompileDaemon keeps running it is hard to notice that (except for the panic stack trace). I think it would be...

See https://medium.com/@felixge/killing-a-child-process-and-all-of-its-children-in-go-54079af94773 for a detailed explanation of how this works. For now this only implemented for posix and these changes should have no effect on windows. This fixes #65 and...

I'm using go 1.18 on macOS, and go install fails with below message: ``` $ go install github.com/githubnemo/CompileDaemon@latest # golang.org/x/sys/unix ../../go/1.18.0/pkg/mod/golang.org/x/[email protected]/unix/syscall_darwin.1_13.go:25:3: //go:linkname must refer to declared function or variable ../../go/1.18.0/pkg/mod/golang.org/x/[email protected]/unix/zsyscall_darwin_amd64.1_13.go:27:3:...

Go dropped go get for cmd-tools. executing go install github.com/githubnemo/COmpileDaemon/cmd does not work.

Hi, Cannot run CompileDeamon as Entrypoint of dockerfile with golang 1.18 Working on golang:1.17.8-alpine3.15 with same ENTRYPOINT tested with `go get github.com/githubnemo/CompileDaemon@latest`

Currently the program is left running, so if the build fails, you have an old version of the program running. It happened to me multiple times that I tried to...

The project I'm working on has important files two folders back from where the main.go file is, so it would be nice to have something like ```-include-dir="../../core"``` to be able...

Latest released tag [v1.4.0](https://github.com/githubnemo/CompileDaemon/commit/50a8debecc13686ba29356b28d30c33555e662f6) with hash `50a8debecc13686ba29356b28d30c33555e662f6` is not merged in master branch.

I'm trying to use CompileDaemon with `go generate`, but have not been successful. I am running two instances of CompileDaemon to try accomplishing this. One instances watches the source files,...