summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/CompileSocket.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/tools/nsc/CompileSocket.scala')
-rw-r--r--src/compiler/scala/tools/nsc/CompileSocket.scala6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/CompileSocket.scala b/src/compiler/scala/tools/nsc/CompileSocket.scala
index 4f71a3da87..c75c6d0f22 100644
--- a/src/compiler/scala/tools/nsc/CompileSocket.scala
+++ b/src/compiler/scala/tools/nsc/CompileSocket.scala
@@ -110,7 +110,7 @@ class CompileSocket {
private def startNewServer(vmArgs: String) = {
val cmd = serverCommand(vmArgs split " " toSeq)
info("[Executing command: %s]" format cmd)
- cmd.run()
+ cmd.daemonized().run()
}
/** The port identification file */
@@ -132,8 +132,10 @@ class CompileSocket {
var attempts = 0
var port = pollPort()
- if (port < 0)
+ if (port < 0) {
+ info("No compile server running: starting one with args '" + vmArgs + "'")
startNewServer(vmArgs)
+ }
while (port < 0 && attempts < MaxAttempts) {
attempts += 1