|
|
|
|
|
by sievebrain
3718 days ago
|
|
I don't see your point. If you have a collection of source files, then something must search the directory tree to find them and feed them to the compiler ... ideally, only the files that have changed, to give fast incremental compilation. If you use a typical Java IDE like IntelliJ then the program that does that will be the IDE. There is no "one more layer" because that's the first and only layer. If the IDE build system does not provide enough features or you'd like your codebase to be IDE independent, you can also use a separate build tool, or a combination of both (in which case the IDE will sync itself to the other build tool). In that case there are two layers. But Go does not have any magical solution to that. There will be Go apps that need more than the little command line tool can do as well. |
|
So now I need to change my text editor?